Added nix-output-monitor to home manager

This commit is contained in:
2024-06-24 15:44:23 -03:00
parent 31f38d659b
commit 930638f986

View File

@@ -0,0 +1,13 @@
{pkgs, ...}: {
home.packages = with pkgs; [
nix-output-monitor
];
home.shellAliases = {
"nix build" = "nom build";
"nix shell" = "nom shell";
"nix develop" = "nom develop";
"nix-build" = "nom-build";
"nix-shell" = "nom-shell";
};
}