snowflake/hosts/sora/default.nix
2023-06-23 22:14:38 -04:00

16 lines
354 B
Nix

_: {
imports = [
./hardware-configuration.nix
./networking.nix
./services
../../modules
];
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "sora";
users.users.notoh.openssh.authorizedKeys.keys = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGmI3hRDFjxLjrM3pE471e4jxSlcqeizh3iNVVdaMHeN sora''
];
}