Refactor and modularize

This commit is contained in:
2023-06-26 16:19:14 -05:00
parent 00bc694fcb
commit c8366db03f
13 changed files with 207 additions and 318 deletions

18
user/users.nix Normal file
View File

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