2024-11-26 18:11:37 -05:00
|
|
|
|
{ pkgs, inputs, stable ? pkgs, unstable ? pkgs, ... }:
|
2024-11-26 17:01:58 -05:00
|
|
|
|
let
|
|
|
|
|
NAME = "meyer";
|
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
(import ../../systemModules/sops.nix { inherit NAME; })
|
|
|
|
|
(import ../../systemModules/nixHelper.nix { inherit NAME; })
|
|
|
|
|
];
|
|
|
|
|
users = {
|
|
|
|
|
users = {
|
|
|
|
|
"${NAME}" = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [
|
|
|
|
|
"wheel" # Enable ‘sudo’ for the user.
|
|
|
|
|
"audio"
|
|
|
|
|
"sound"
|
|
|
|
|
"video"
|
|
|
|
|
"input"
|
|
|
|
|
"tty"
|
|
|
|
|
"plugdev"
|
|
|
|
|
];
|
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
home-manager = {
|
2024-11-26 18:11:37 -05:00
|
|
|
|
extraSpecialArgs = { inherit inputs stable unstable; };
|
2024-11-26 17:01:58 -05:00
|
|
|
|
users = {
|
|
|
|
|
"${NAME}" = import ./home.nix;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|