2023-06-26 16:30:36 -05:00
|
|
|
{ config, pkgs, ... }: {
|
2023-07-04 09:21:22 -05:00
|
|
|
programs.bash.promptInit = ''
|
|
|
|
PS1="\n\[\033[01;32m\]\u $\[\033[00m\]\[\033[01;36m\] \w >\[\033[00m\] "
|
|
|
|
'';
|
2023-06-26 16:19:14 -05:00
|
|
|
users.users = {
|
|
|
|
sezycei = {
|
|
|
|
isNormalUser = true;
|
|
|
|
passwordFile = config.age.secrets.sezycei.path;
|
2023-07-25 11:58:14 -05:00
|
|
|
extraGroups = [ "wheel" "nginx" ];
|
2024-01-10 12:28:37 -06:00
|
|
|
packages = with pkgs; [ atuin bun byobu purescript stack tmux ];
|
|
|
|
shell = pkgs.zsh;
|
2023-06-26 16:19:14 -05:00
|
|
|
};
|
2023-09-06 09:15:49 -05:00
|
|
|
|
|
|
|
cridycei = {
|
|
|
|
isNormalUser = true;
|
|
|
|
passwordFile = config.age.secrets.cridycei.path;
|
|
|
|
extraGroups = [ ];
|
|
|
|
packages = with pkgs; [ ];
|
|
|
|
};
|
|
|
|
|
2023-09-09 07:17:48 -05:00
|
|
|
torrent = {
|
|
|
|
isNormalUser = true;
|
|
|
|
homeMode = "770";
|
|
|
|
};
|
2023-06-26 16:30:36 -05:00
|
|
|
};
|
2023-06-26 16:19:14 -05:00
|
|
|
}
|