dotfiles/modules/programming/nix.nix

15 lines
208 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} = {
home.packages = with pkgs;
[
nixfmt # Nix file formatter
];
programs.fish.shellAbbrs = { n = "nix"; };
};
2022-06-20 23:51:03 +00:00
}