snowflake/hosts/sora/default.nix
notohh 1c4239269d
Some checks failed
ci/woodpecker/push/checks Pipeline failed
hosts: add hostnames to networking.nix
2024-01-27 13:48:13 -05:00

17 lines
457 B
Nix

_: {
imports = [
./hardware.nix
./networking.nix
./services
../../modules
];
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
users.users.notoh.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGmI3hRDFjxLjrM3pE471e4jxSlcqeizh3iNVVdaMHeN sora"
];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMd8j1+fC/ng7l17rsxugVtlhurUe1ICizwA9lQkSuNY forgejo"
];
}