Correctly enable Fish so aliases are set.

This commit is contained in:
Nolan Darilek 2025-04-25 12:00:46 -05:00
parent 31a2c39d2b
commit 65edf315b2

View file

@ -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";
};
}