From 65edf315b29db95716a3261a236e92d8356260c7 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Fri, 25 Apr 2025 12:00:46 -0500 Subject: [PATCH] Correctly enable Fish so aliases are set. --- users/root.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/users/root.nix b/users/root.nix index ab329e8..bf78610 100644 --- a/users/root.nix +++ b/users/root.nix @@ -10,11 +10,14 @@ programs.fish.enable = true; - home-manager.users.root.home = { - shellAliases = { - "systemctl" = "systemctl --no-ager -l"; - "journalctl" = "journalctl --no-pager -l"; + home-manager.users.root = { + programs.fish.enable = true; + home = { + shellAliases = { + "systemctl" = "systemctl --no-pager -l"; + "journalctl" = "journalctl --no-pager -l"; + }; + stateVersion = "24.11"; }; - stateVersion = "24.11"; }; }