nixcfg/systems/x86_64-linux/x1/default.nix
Harald Hoyer 94d0ada223 nixsgx for everyone
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
2024-03-20 00:07:46 +01:00

24 lines
407 B
Nix

{ pkgs, lib, ... }:
with lib;
with lib.plusultra;
{
imports = [ ./hardware-configuration.nix ];
plusultra = {
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";
}