2022-03-20 23:13:28 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
./modules/generic.nix
|
|
|
|
|
./modules/borg.nix
|
2022-09-25 21:49:43 +02:00
|
|
|
./modules/minecraft.nix
|
2023-01-29 17:55:32 +01:00
|
|
|
./modules/rclone.nix
|
2023-06-30 09:29:12 +02:00
|
|
|
./modules/authentik-server.nix
|
2022-03-20 23:13:28 +01:00
|
|
|
];
|
|
|
|
|
|
2023-01-31 08:51:19 +01:00
|
|
|
services.rclone.cacheSize = "100G";
|
|
|
|
|
|
|
|
|
|
system.autoUpgrade = {
|
2022-09-25 21:49:43 +02:00
|
|
|
allowReboot = false;
|
|
|
|
|
};
|
|
|
|
|
|
2022-03-20 23:13:28 +01:00
|
|
|
system.stateVersion = "22.05";
|
|
|
|
|
}
|
2022-07-18 00:42:28 +02:00
|
|
|
|
|
|
|
|
# vim: set et ts=2 sw=2 ai:
|