nixos-config/hosts/backup/configuration.nix

19 lines
416 B
Nix
Raw Normal View History

2022-05-25 12:50:35 +00:00
{ ... }: {
imports = [
./hardware-configuration.nix
./rest-server.nix
./users.nix
./common.nix
];
boot.cleanTmpDir = true;
zramSwap.enable = false;
networking.hostName = "back";
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKUA1RW6JwZasspAp8qmFRFnlV5WXjhLfStAAkM+KYLv lucazeau.alexandre@gmail.com"
];
}