diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-07 12:57:47 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-07 14:11:03 +0200 |
commit | 6df1b59d794889228967b311805bac62c0637a9b (patch) | |
tree | 9d20079177e68685573c0784806bdfbd8772a35d /hosts | |
parent | Add ability to create iso of nixosConfigurations (diff) | |
download | nixos-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.nix | 5 |
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; |