2024-03-06 16:07:40 +01:00
|
|
|
{ pkgs, lib, ... }:
|
2024-03-04 14:09:57 +01:00
|
|
|
with lib;
|
|
|
|
with lib.plusultra;
|
|
|
|
{
|
2024-03-06 15:36:02 +01:00
|
|
|
imports = [ ./hardware-configuration.nix ];
|
|
|
|
|
|
|
|
plusultra = {
|
|
|
|
base.enable = true;
|
|
|
|
gui.enable = true;
|
|
|
|
nix-ld.enable = true;
|
|
|
|
nix.enable = true;
|
|
|
|
nix.extra-substituters."https://nixsgx.cachix.org".key = "nixsgx.cachix.org-1:tGi36DlY2joNsIXOlGnSgWW0+E094V6hW0umQRo/KoE=";
|
|
|
|
podman.enable = true;
|
|
|
|
secureboot.enable = true;
|
|
|
|
};
|
2024-03-04 14:09:57 +01:00
|
|
|
|
2024-03-05 09:45:37 +01:00
|
|
|
system.autoUpgrade = {
|
|
|
|
enable = true;
|
|
|
|
operation = "boot";
|
|
|
|
allowReboot = false;
|
|
|
|
};
|
|
|
|
|
2024-03-04 14:09:57 +01:00
|
|
|
system.stateVersion = "23.11";
|
|
|
|
}
|