This commit is contained in:
2023-06-26 16:30:36 -05:00
parent c8366db03f
commit 6081557b6b
9 changed files with 23 additions and 47 deletions

View File

@ -1,18 +1,11 @@
{ config, pkgs, ... }:
{
{ config, pkgs, ... }: {
users.users = {
sezycei = {
isNormalUser = true;
passwordFile = config.age.secrets.sezycei.path;
extraGroups = [ "wheel" ];
packages = with pkgs; [
byobu
tmux
stack
];
extraGroups = [ "wheel" ];
packages = with pkgs; [ byobu tmux stack ];
};
torrent = {
isNormalUser = true;
};
};
torrent = { isNormalUser = true; };
};
}