nixos-config/configurations/nixos/gate/configuration.nix
Sridhar Ratnakumar eff3333e3d
add gate
2024-11-19 16:50:26 -05:00

15 lines
448 B
Nix

{ ... }: {
imports = [
./hardware-configuration.nix
./networking.nix # generated at runtime by nixos-infect
];
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "gate";
networking.domain = "";
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keys = [ ''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHQRxPoqlThDrkR58pKnJgmeWPY9/wleReRbZ2MOZRyd'' ];
system.stateVersion = "23.11";
}