server/fili/configuration.nix
Jana Dönszelmann 194d8d9448
Some checks failed
/ build (push) Failing after 7m39s
/ lint (push) Successful in 7s
retry
2025-08-20 12:10:10 +02:00

38 lines
639 B
Nix

_: {
imports = [
./hardware-configuration.nix
./storage.nix
./networking.nix
./services
];
networking.nameservers = [
"1.1.1.1"
"9.9.9.9"
];
networking = {
hostName = "fili";
networkmanager.enable = true;
};
nix.settings = {
# users that can interact with nix
trusted-users = [
"jana"
"root"
];
};
boot.initrd = {
supportedFilesystems = [ "nfs" ];
kernelModules = [ "nfs" ];
};
# use systemd-boot as bootloader
boot.loader.systemd-boot.enable = true;
# secrets
sops.age.keyFile = "/sops/sops-key.txt";
sops.defaultSopsFormat = "dotenv";
}