snowflake/hosts/sora/default.nix

19 lines
489 B
Nix
Raw Normal View History

2023-06-23 22:14:38 -04:00
_: {
2023-06-23 09:25:35 -04:00
imports = [
./hardware.nix
2023-06-23 09:25:35 -04:00
./networking.nix
2023-06-23 11:03:32 -04:00
./services
2023-06-23 09:59:09 -04:00
../../modules
2023-06-23 09:25:35 -04:00
];
2023-06-23 11:03:32 -04:00
boot.tmp.cleanOnBoot = true;
2023-06-23 09:25:35 -04:00
zramSwap.enable = true;
networking.hostName = "sora";
users.users.notoh.openssh.authorizedKeys.keys = [
2023-10-20 20:26:47 -04:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGmI3hRDFjxLjrM3pE471e4jxSlcqeizh3iNVVdaMHeN sora"
];
users.users.root.openssh.authorizedKeys.keys = [
2023-10-20 20:53:40 -04:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMd8j1+fC/ng7l17rsxugVtlhurUe1ICizwA9lQkSuNY forgejo"
2023-06-23 09:25:35 -04:00
];
}