nixos-config/systems/mc7/configuration.nix

19 lines
288 B
Nix
Raw Normal View History

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
2022-03-20 23:13:28 +01:00
];
2022-09-25 21:49:43 +02:00
system.autoUpgrade = {
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: