initial nixos-config

This commit is contained in:
2023-08-01 05:06:16 +00:00
parent 0a7012b316
commit 6cc6a1f32c
17 changed files with 366 additions and 0 deletions

13
hosts/common/stefan.nix Normal file
View File

@ -0,0 +1,13 @@
{
users.users = {
stefan = {
isNormalUser = true;
extraGroups = [ "wheel" ];
initialPassword = "password";
openssh.authorizedKeys.keys = [
# Add your SSH public key(s) here, if you plan on using SSH to connect
];
};
};
}