mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-23 16:49:01 -05:00
43 lines
791 B
Nix
43 lines
791 B
Nix
{
|
|
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; })
|
|
];
|
|
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;
|
|
};
|
|
};
|
|
}
|