forces overwrite of conflicting values
This commit is contained in:
parent
546a298406
commit
f9aee5f484
1 changed files with 3 additions and 3 deletions
|
|
@ -24,7 +24,7 @@ in
|
||||||
memos
|
memos
|
||||||
|
|
||||||
(
|
(
|
||||||
{ config, ... }:
|
{ config, lib, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./_hardware-configuration.nix
|
./_hardware-configuration.nix
|
||||||
|
|
@ -44,8 +44,8 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
boot.loader.systemd-boot.enable = false;
|
boot.loader.systemd-boot.enable = lib.mkForce false;
|
||||||
boot.loader.efi.canTouchEfiVariables = false;
|
boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
|
||||||
boot.tmp.cleanOnBoot = true;
|
boot.tmp.cleanOnBoot = true;
|
||||||
zramSwap.enable = true;
|
zramSwap.enable = true;
|
||||||
# Fix due to https://github.com/NixOS/nixpkgs/issues/180175
|
# Fix due to https://github.com/NixOS/nixpkgs/issues/180175
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue