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-06-26 16:30:36 -05:00
|
|
|
extraGroups = [ "wheel" ];
|
|
|
|
packages = with pkgs; [ byobu tmux stack ];
|
2023-06-26 16:19:14 -05:00
|
|
|
};
|
2023-06-26 16:30:36 -05:00
|
|
|
torrent = { isNormalUser = true; };
|
|
|
|
};
|
2023-06-26 16:19:14 -05:00
|
|
|
}
|