nixos-config/systems/mc7/configuration.nix
2022-09-25 21:49:43 +02:00

18 lines
288 B
Nix

{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
./modules/generic.nix
./modules/borg.nix
./modules/minecraft.nix
];
system.autoUpgrade = {
allowReboot = false;
};
system.stateVersion = "22.05";
}
# vim: set et ts=2 sw=2 ai: