34 lines
683 B
Nix
34 lines
683 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
nixpkgs.system = "x86_64-linux";
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./services/immich.nix
|
|
./services/paperless.nix
|
|
./services/jellyfin.nix
|
|
|
|
];
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
networking.hostId = "7b4c2932";
|
|
|
|
xyno.presets.cli.enable = true;
|
|
xyno.presets.server.enable = true;
|
|
xyno.services.wireguard.enable = true;
|
|
xyno.services.caddy.enable = true;
|
|
xyno.services.monitoring.enable = true;
|
|
xyno.services.authentik.enable = true;
|
|
xyno.presets.home-manager.enable = true;
|
|
xyno.system.user.enable = true;
|
|
xyno.networking.networkd = {
|
|
enable = true;
|
|
};
|
|
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|