forces overwrite of conflicting values

This commit is contained in:
Dennis Schoepf 2026-03-10 20:21:32 +01:00
parent 546a298406
commit f9aee5f484

View file

@ -24,7 +24,7 @@ in
memos
(
{ config, ... }:
{ config, lib, ... }:
{
imports = [
./_hardware-configuration.nix
@ -44,8 +44,8 @@ in
};
system.stateVersion = "24.11";
boot.loader.systemd-boot.enable = false;
boot.loader.efi.canTouchEfiVariables = false;
boot.loader.systemd-boot.enable = lib.mkForce false;
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
# Fix due to https://github.com/NixOS/nixpkgs/issues/180175