From cb032a9862be0113d7339e5126c325107fa3e754 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Wed, 26 Jun 2024 12:03:38 +0200 Subject: [PATCH] Add nh shell aliases --- modules/home/nix-helper/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home/nix-helper/default.nix b/modules/home/nix-helper/default.nix index 6fdc0d4..03b2283 100644 --- a/modules/home/nix-helper/default.nix +++ b/modules/home/nix-helper/default.nix @@ -32,6 +32,11 @@ in FLAKE = "/home/julian/.dotfiles"; }; + home.shellAliases = { + "os" = "nh os switch"; + "hs" = "nh home switch"; + }; + home.packages = with pkgs; [ nh ]; }; }