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 = "";
|
xkbVariant = "";
|
||||||
};
|
};
|
||||||
|
|
||||||
users = {
|
|
||||||
defaultUserShell = pkgs.nushell;
|
|
||||||
users.notoh = {
|
|
||||||
isNormalUser = true;
|
|
||||||
description = "notoh";
|
|
||||||
extraGroups = ["networkmanager" "wheel" "docker"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.gnupg.agent = {
|
programs.gnupg.agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
|
|
|
@ -27,15 +27,6 @@
|
||||||
xkbVariant = "";
|
xkbVariant = "";
|
||||||
};
|
};
|
||||||
|
|
||||||
users = {
|
|
||||||
defaultUserShell = pkgs.nushell;
|
|
||||||
users.notoh = {
|
|
||||||
isNormalUser = true;
|
|
||||||
description = "notoh";
|
|
||||||
extraGroups = ["networkmanager" "wheel" "docker"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.gnupg.agent = {
|
programs.gnupg.agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
|
|
|
@ -88,14 +88,6 @@
|
||||||
daemon.enable = true;
|
daemon.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
users = {
|
|
||||||
defaultUserShell = pkgs.nushell;
|
|
||||||
users.notoh = {
|
|
||||||
isNormalUser = true;
|
|
||||||
description = "notoh";
|
|
||||||
extraGroups = ["networkmanager" "wheel" "disk" "video"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
wget
|
wget
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./security.nix
|
./security.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
|
./users.nix
|
||||||
./nix.nix
|
./nix.nix
|
||||||
./system.nix
|
./system.nix
|
||||||
./openssh.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