Original commit

This commit is contained in:
Maxiem Geldhof 2025-10-12 17:15:04 +02:00
commit cc74263a3b
26 changed files with 3052 additions and 0 deletions

17
systems/selene/users.nix Normal file
View file

@ -0,0 +1,17 @@
{
users.users.selene = {
isNormalUser = true;
home = "/home/selene";
hashedPassword = "$y$j9T$KjOwguW/7P9GvbNg6Yy.k/$8xf3aqnJ909HSjxtpe854RKdiXiPpbOLt.aiuJSfeC0";
openssh.authorizedKeys.keys = [
(builtins.readFile ../../keys/hetzner.pub)
(builtins.readFile ../../keys/asus.pub)
(builtins.readFile "../../keys/pacbook.pub")
];
extraGroups = [
"wheel"
"networkmanager"
];
};
}