diff options
| author | Baitinq <[email protected]> | 2022-09-07 12:57:47 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-07 14:11:03 +0200 |
| commit | bc3ad04182043263b48de374f7814dcf7c78cc8e (patch) | |
| tree | 7c5c7dfbeb62be7306999bcc3f3259f3d6013856 /hosts | |
| parent | Add ability to create iso of nixosConfigurations (diff) | |
| download | nixos-config-bc3ad04182043263b48de374f7814dcf7c78cc8e.tar.gz nixos-config-bc3ad04182043263b48de374f7814dcf7c78cc8e.tar.bz2 nixos-config-bc3ad04182043263b48de374f7814dcf7c78cc8e.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; |