This repository has been archived on 2024-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
nixos/modules/dev-home-common.nix

27 lines
259 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
home.packages = with pkgs; [
pkg-config
# Nix things
nixfmt-rfc-style
nil
pkg-config
2024-03-14 15:09:34 +05:30
gitu
2024-03-14 17:15:38 +05:30
xsv
2024-03-14 15:09:34 +05:30
# Lua
luajit
lua-language-server
2023-10-15 14:33:58 +05:30
# Go
go
gopls
2023-12-23 22:45:09 +05:30
# Home automation
esphome
];
}