dotfiles/modules/programming/nix.nix

13 lines
182 B
Nix
Raw Normal View History

2022-06-20 23:51:03 +00:00
{ config, pkgs, ... }: {
2022-06-27 02:15:25 +00:00
home-manager.users.${config.user} = {
2022-07-13 04:23:38 +00:00
home.packages = with pkgs; [
nixfmt # Nix file formatter
2022-11-07 13:04:29 +00:00
nil # Nix language server
2022-07-13 04:23:38 +00:00
];
2022-06-27 02:15:25 +00:00
};
2022-06-20 23:51:03 +00:00
}