Files
flocon/machines/genepi/configuration.nix
2025-07-19 18:38:55 +02:00

45 lines
867 B
Nix

{
self,
...
}:
{
imports = [
./acme.nix
./boot.nix
./builder.nix
./freshrss.nix
./glance.nix
./homeassistant.nix
# ./immich.nix
./monitoring
./mpd.nix
./network.nix
./nginx.nix
./syncthing.nix
./taskchampion.nix
./topology.nix
../../system
../../modules/unbound.nix
../../modules/unbound-auth.nix
self.inputs.home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.rpqt = ./home.nix;
}
];
networking.hostName = "genepi";
clan.core.networking.targetHost = "root@genepi.local";
disko.devices.disk.main.device = "/dev/disk/by-id/ata-WD_Green_M.2_2280_480GB_2251E6411147";
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
}