nixcfg/systems/x86_64-linux/x1/default.nix
Harald Hoyer 7ec319bf22 Revert "enable MIPI camera"
not worth the hassle

This reverts commit 897a92ea57.
2024-03-07 09:43:15 +01:00

25 lines
536 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;
nix.extra-substituters."https://nixsgx.cachix.org".key = "nixsgx.cachix.org-1:tGi36DlY2joNsIXOlGnSgWW0+E094V6hW0umQRo/KoE=";
podman.enable = true;
secureboot.enable = true;
};
system.autoUpgrade = {
enable = true;
operation = "boot";
allowReboot = false;
};
system.stateVersion = "23.11";
}