modules: init users.nix
This commit is contained in:
parent
0335c53e89
commit
8fe1513e50
5 changed files with 24 additions and 28 deletions
|
@ -27,15 +27,6 @@
|
|||
xkbVariant = "";
|
||||
};
|
||||
|
||||
users = {
|
||||
defaultUserShell = pkgs.nushell;
|
||||
users.notoh = {
|
||||
isNormalUser = true;
|
||||
description = "notoh";
|
||||
extraGroups = ["networkmanager" "wheel" "docker"];
|
||||
};
|
||||
};
|
||||
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
|
|
|
@ -27,16 +27,7 @@
|
|||
xkbVariant = "";
|
||||
};
|
||||
|
||||
users = {
|
||||
defaultUserShell = pkgs.nushell;
|
||||
users.notoh = {
|
||||
isNormalUser = true;
|
||||
description = "notoh";
|
||||
extraGroups = ["networkmanager" "wheel" "docker"];
|
||||
};
|
||||
};
|
||||
|
||||
programs.gnupg.agent = {
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
pinentryFlavor = "curses";
|
||||
|
|
|
@ -88,15 +88,7 @@
|
|||
daemon.enable = true;
|
||||
};
|
||||
};
|
||||
users = {
|
||||
defaultUserShell = pkgs.nushell;
|
||||
users.notoh = {
|
||||
isNormalUser = true;
|
||||
description = "notoh";
|
||||
extraGroups = ["networkmanager" "wheel" "disk" "video"];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
wget
|
||||
dconf
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
./security.nix
|
||||
./networking.nix
|
||||
./users.nix
|
||||
./nix.nix
|
||||
./system.nix
|
||||
./openssh.nix
|
||||
|
|
21
modules/users.nix
Normal file
21
modules/users.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
|
||||
users = {
|
||||
defaultUserShell = pkgs.nushell;
|
||||
users.notoh = {
|
||||
isNormalUser = true;
|
||||
description = "notoh";
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"disk"
|
||||
"video"
|
||||
"docker"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in a new issue