dotfiles/modules/programming/nix.nix
2022-06-26 22:15:25 -04:00

15 lines
208 B
Nix

{ config, pkgs, ... }: {
home-manager.users.${config.user} = {
home.packages = with pkgs;
[
nixfmt # Nix file formatter
];
programs.fish.shellAbbrs = { n = "nix"; };
};
}