dotfiles/common/users/meyer-server/default.nix

44 lines
791 B
Nix
Raw Normal View History

2025-02-21 21:45:59 -05:00
{
pkgs,
inputs,
stable,
unstable,
...
}:
let
NAME = "meyer";
in
{
imports = [
(import ../../systemModules/sops.nix { inherit NAME; })
(import ../../systemModules/networkManager.nix { inherit NAME; })
(import ../../systemModules/docker.nix { inherit NAME; })
(import ../../systemModules/nixHelper.nix { inherit NAME; })
2025-02-21 21:45:59 -05:00
];
users = {
users = {
"${NAME}" = {
isNormalUser = true;
extraGroups = [
"wheel"
"audio"
"sound"
"video"
"input"
"tty"
"plugdev"
];
shell = pkgs.zsh;
};
};
};
home-manager = {
extraSpecialArgs = {
inherit inputs stable unstable;
};
users = {
"${NAME}" = import ./home.nix;
};
};
}