diff --git a/home/shell/nix-output-monitor.nix b/home/shell/nix-output-monitor.nix new file mode 100644 index 0000000..9dbf822 --- /dev/null +++ b/home/shell/nix-output-monitor.nix @@ -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"; + }; +}