19 lines
319 B
Nix
19 lines
319 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
users.users = {
|
||
|
sezycei = {
|
||
|
isNormalUser = true;
|
||
|
passwordFile = config.age.secrets.sezycei.path;
|
||
|
extraGroups = [ "wheel" ];
|
||
|
packages = with pkgs; [
|
||
|
byobu
|
||
|
tmux
|
||
|
stack
|
||
|
];
|
||
|
};
|
||
|
torrent = {
|
||
|
isNormalUser = true;
|
||
|
};
|
||
|
};
|
||
|
}
|