about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-09-07 12:57:47 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-09-07 14:11:03 +0200
commit6df1b59d794889228967b311805bac62c0637a9b (patch)
tree9d20079177e68685573c0784806bdfbd8772a35d /hosts
parentAdd ability to create iso of nixosConfigurations (diff)
downloadnixos-config-6df1b59d794889228967b311805bac62c0637a9b.tar.gz
nixos-config-6df1b59d794889228967b311805bac62c0637a9b.tar.bz2
nixos-config-6df1b59d794889228967b311805bac62c0637a9b.zip
Use mkForce on boot config in the base host
This fixes creating isos
Diffstat (limited to 'hosts')
-rw-r--r--hosts/configuration.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix
index e934fd0..e177b93 100644
--- a/hosts/configuration.nix
+++ b/hosts/configuration.nix
@@ -12,7 +12,7 @@
     ../secrets/wireguard
   ];
 
-  boot = {
+  boot = lib.mkForce {
     loader = {
       efi = {
         efiSysMountPoint = "/boot/efi";
@@ -52,9 +52,6 @@
   i18n.defaultLocale = "en_US.UTF-8";
   console.useXkbConfig = true; #use same kb settings (layout) as xorg
 
-  # Enable CUPS to print documents.
-  # services.printing.enable = true;
-
   users.mutableUsers = false;
 
   users.users.root.hashedPassword = secrets.root.hashed_password;