eve-psr-nix0/user/users.nix

12 lines
277 B
Nix
Raw Normal View History

2023-06-26 16:30:36 -05:00
{ config, pkgs, ... }: {
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
}