2022-05-26 17:22:03 +00:00
|
|
|
{ ... }: {
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
2022-06-01 18:25:07 +00:00
|
|
|
./firewall-services.nix
|
2022-05-26 17:22:03 +00:00
|
|
|
../modules/users.nix
|
|
|
|
../modules/common.nix
|
2023-03-30 20:15:53 +00:00
|
|
|
../modules/smtp.nix
|
2022-05-26 19:24:07 +00:00
|
|
|
../modules/grafana.nix
|
2022-05-26 17:22:03 +00:00
|
|
|
|
|
|
|
];
|
2022-07-02 18:19:36 +00:00
|
|
|
system.stateVersion = "22.05";
|
2022-05-26 17:22:03 +00:00
|
|
|
boot.cleanTmpDir = true;
|
|
|
|
zramSwap.enable = true;
|
2022-07-02 18:19:36 +00:00
|
|
|
networking.hostName = "sup";
|
2022-05-26 17:22:03 +00:00
|
|
|
services.openssh.enable = true;
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = [
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKUA1RW6JwZasspAp8qmFRFnlV5WXjhLfStAAkM+KYLv lucazeau.alexandre@gmail.com"
|
|
|
|
];
|
|
|
|
}
|