From edfe83e38d6af5a0c8c45121d4c6fa52f596ec72 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Mon, 31 Mar 2025 00:35:37 +0100 Subject: [PATCH] removed uneccesary nixPath setting nixPath was set in host file for gabbielaptop as well as being set in the genericModule in the flake, now it is only set in the flake --- hosts/gabbielaptop/configuration.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/hosts/gabbielaptop/configuration.nix b/hosts/gabbielaptop/configuration.nix index c639968..41ed49b 100644 --- a/hosts/gabbielaptop/configuration.nix +++ b/hosts/gabbielaptop/configuration.nix @@ -3,7 +3,6 @@ # and in the NixOS manual (accessible by running ‘nixos-help’). { - config, lib, pkgs, inputs, @@ -16,13 +15,10 @@ ./hardware-configuration.nix ]; - # Bootloader. - # boot.loader.efi.canTouchEfiVariables = true; - boot = { initrd.systemd.enable = true; - loader.systemd-boot.enable = lib.mkForce false; + loader.systemd-boot.enable = lib.mkForce false; # Required for lanzaboote to function, which enables secure boot lanzaboote = { enable = true; @@ -35,7 +31,6 @@ "nix-command" "flakes" ]; - nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; }; boot.initrd.kernelModules = [ "amdgpu" ];