feat(nixos:admin): swap user shell from fish to zsh

This commit is contained in:
ooks-io 2024-07-11 23:02:52 +12:00
parent c28dcd22d8
commit 9b2edd3782
3 changed files with 6 additions and 1 deletions

View file

@ -12,6 +12,10 @@ in
enable = true; enable = true;
autocd = true; autocd = true;
dotDir = ".config/zsh"; dotDir = ".config/zsh";
history = {
expireDuplicatesFirst = true;
path = "${config.xdg.dataHome}/zsh_history";
};
}; };
}; };
} }

View file

@ -23,5 +23,6 @@ in
sourcegraph.enable = true; sourcegraph.enable = true;
}; };
ooknet.editor.nvim.enable = true; ooknet.editor.nvim.enable = true;
ooknet.shell.fish.enable = true;
}; };
} }

View file

@ -17,7 +17,7 @@ in
profiles = [ "console-tools" "media" ]; profiles = [ "console-tools" "media" ];
admin = { admin = {
name = "ooks"; name = "ooks";
shell = "fish"; shell = "zsh";
homeManager = true; homeManager = true;
}; };
networking = { networking = {