24 lines
403 B
Nix
24 lines
403 B
Nix
|
{ pkgs, lib, ... }:
|
||
|
with lib;
|
||
|
with lib.metacfg;
|
||
|
{
|
||
|
imports = [ ./hardware-configuration.nix ];
|
||
|
|
||
|
metacfg = {
|
||
|
base.enable = true;
|
||
|
gui.enable = true;
|
||
|
nix-ld.enable = true;
|
||
|
nix.enable = true;
|
||
|
podman.enable = true;
|
||
|
secureboot.enable = true;
|
||
|
};
|
||
|
|
||
|
system.autoUpgrade = {
|
||
|
enable = true;
|
||
|
operation = "boot";
|
||
|
allowReboot = false;
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "23.11";
|
||
|
}
|