mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-19 03:33:30 -05:00
34 lines
639 B
Nix
34 lines
639 B
Nix
|
{ pkgs, inputs, ... }:
|
|||
|
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 = {
|
|||
|
extraSpecialArgs = { inherit inputs; };
|
|||
|
users = {
|
|||
|
"${NAME}" = import ./home.nix;
|
|||
|
};
|
|||
|
};
|
|||
|
}
|