shortcut for nix commands

This commit is contained in:
Noah Masur 2022-06-26 22:15:25 -04:00
parent 720ca5d94c
commit 6383d88b4b

View File

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