chore: remove zsh for now

This commit is contained in:
oddlama 2022-12-29 13:39:44 +01:00
parent 79129d60ea
commit 7a8ffd9a2e
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
5 changed files with 10 additions and 88 deletions

View file

@ -14,7 +14,7 @@ with lib; {
["wheel" "input" "video"]
++ optionals config.sound.enable ["audio"];
isNormalUser = true;
shell = pkgs.zsh;
shell = pkgs.fish;
};
home-manager.users.myuser = {
@ -31,7 +31,12 @@ with lib; {
# ./graphical/i3
];
home.username = config.users.users.myuser.name;
home.uid = config.users.users.myuser.uid;
home = {
username = config.users.users.myuser.name;
uid = config.users.users.myuser.uid;
shellAliases = {
p = "cd ~/projects";
};
};
};
}