From 930638f98640007464e09158ada29906b00ae785 Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Mon, 24 Jun 2024 15:44:23 -0300 Subject: [PATCH] Added nix-output-monitor to home manager --- home/shell/nix-output-monitor.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 home/shell/nix-output-monitor.nix 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"; + }; +}