19 lines
416 B
Nix
19 lines
416 B
Nix
|
{ ... }: {
|
||
|
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"
|
||
|
];
|
||
|
|
||
|
|
||
|
}
|