eve-psr-nix0/user/users.nix

19 lines
319 B
Nix
Raw Normal View History

2023-06-26 16:19:14 -05:00
{ config, pkgs, ... }:
{
users.users = {
sezycei = {
isNormalUser = true;
passwordFile = config.age.secrets.sezycei.path;
extraGroups = [ "wheel" ];
packages = with pkgs; [
byobu
tmux
stack
];
};
torrent = {
isNormalUser = true;
};
};
}