2023-06-26 16:30:36 -05:00
|
|
|
{ config, pkgs, ... }: {
|
2023-07-04 09:21:22 -05:00
|
|
|
programs.bash.promptInit = ''
|
2024-01-28 12:30:36 -06:00
|
|
|
PS1='\u@\h:\w\n-> '
|
2023-07-04 09:21:22 -05:00
|
|
|
'';
|
2023-06-26 16:19:14 -05:00
|
|
|
users.users = {
|
|
|
|
sezycei = {
|
|
|
|
isNormalUser = true;
|
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 ];
|
2023-06-26 16:19:14 -05:00
|
|
|
};
|
2023-09-06 09:15:49 -05:00
|
|
|
|
|
|
|
cridycei = {
|
|
|
|
isNormalUser = true;
|
|
|
|
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
|
|
|
}
|