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
2024-03-14 17:15:38 +05:30

26 lines
259 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
pkg-config
# Nix things
nixfmt-rfc-style
nil
pkg-config
gitu
xsv
# Lua
luajit
lua-language-server
# Go
go
gopls
# Home automation
esphome
];
}