snowflake/hosts/sora/default.nix
notohh 3d2e5368cb
Some checks failed
fmt check / check (push) Waiting to run
flake check / check (push) Has been cancelled
hosts: rename hardware-config & remove unnecessary tailscale call
2023-12-29 12:43:13 -05:00

19 lines
489 B
Nix

_: {
imports = [
./hardware.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"
];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMd8j1+fC/ng7l17rsxugVtlhurUe1ICizwA9lQkSuNY forgejo"
];
}