snowflake/hosts/sora/default.nix

16 lines
354 B
Nix
Raw Normal View History

2023-06-23 22:14:38 -04:00
_: {
2023-06-23 09:25:35 -04:00
imports = [
./hardware-configuration.nix
./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-06-23 22:14:38 -04:00
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGmI3hRDFjxLjrM3pE471e4jxSlcqeizh3iNVVdaMHeN sora''
2023-06-23 09:25:35 -04:00
];
}