♻️ refactor programs.zsh

This commit is contained in:
2023-03-25 15:17:55 -04:00
parent 0e31565644
commit 9c133feed0
8 changed files with 45 additions and 60 deletions

View File

@ -22,4 +22,11 @@ _:
];
};
};
programs = {
zsh = {
enable = true;
promptInit = "";
};
};
}

View File

@ -1,4 +1,4 @@
_: {
{ pkgs, ... }: {
imports = [ ./common.nix ];
@ -51,5 +51,10 @@ _: {
};
};
users.users.walkah = {
home = "/Users/walkah";
shell = pkgs.zsh;
};
system.stateVersion = 4;
}

View File

@ -6,6 +6,7 @@
inetutils
vim
];
nix = {
gc = {
persistent = true;
@ -17,5 +18,9 @@
};
};
programs = {
mosh.enable = true;
};
system.stateVersion = "23.05";
}