Add nixos-server user module
This commit is contained in:
parent
18b28c2e9d
commit
75d4187baa
2 changed files with 24 additions and 18 deletions
|
@ -6,6 +6,7 @@
|
|||
../../modules/disko/efi-full-btrfs.nix
|
||||
../../modules/systemd-boot.nix
|
||||
|
||||
../../users/julius/nixos-server.nix
|
||||
../../modules/nix.nix
|
||||
../../modules/network-server.nix
|
||||
../../modules/locale.nix
|
||||
|
@ -20,24 +21,6 @@
|
|||
|
||||
networking.hostName = "kube01"; # Define your hostname.
|
||||
|
||||
users = {
|
||||
users = {
|
||||
julius = {
|
||||
initialPassword = "password";
|
||||
isNormalUser = true;
|
||||
uid = 1000;
|
||||
extraGroups = [ "wheel" "julius" ];
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOiZXFM8XFkReb9HuGcY5rtPXsGuZ2eDnBBpI0kcHa6c julius@julius-framework"
|
||||
];
|
||||
};
|
||||
};
|
||||
groups = {
|
||||
julius = {
|
||||
gid = 1000;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# This option defines the first version of NixOS you have installed on this particular machine,
|
||||
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
|
||||
|
|
23
users/julius/nixos-server.nix
Normal file
23
users/julius/nixos-server.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
...
|
||||
}: {
|
||||
|
||||
users = {
|
||||
users = {
|
||||
julius = {
|
||||
initialPassword = "password";
|
||||
isNormalUser = true;
|
||||
uid = 1000;
|
||||
group = "julius";
|
||||
extraGroups = [ "wheel" ];
|
||||
};
|
||||
};
|
||||
groups = {
|
||||
julius = {
|
||||
gid = 1000;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
nix.settings.trusted-users = [ "julius" ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue