nixos-config/hosts/sup/configuration.nix

22 lines
562 B
Nix
Raw Normal View History

2022-05-26 17:22:03 +00:00
{ ... }: {
imports = [
./hardware-configuration.nix
./firewall-services.nix
2023-06-21 19:15:44 +00:00
./VPN.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
../modules/grafana.nix
2023-06-21 19:15:44 +00:00
../docker/podman.nix
2022-05-26 17:22:03 +00:00
];
system.stateVersion = "22.05";
2023-06-21 19:15:44 +00:00
boot.tmp.cleanOnBoot = true;
2022-05-26 17:22:03 +00:00
zramSwap.enable = true;
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"
2022-05-26 17:22:03 +00:00
];
}