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
This commit is contained in:
Gabriella Bere 2025-03-31 00:35:37 +01:00
parent f2b8b8d431
commit edfe83e38d

View file

@ -3,7 +3,6 @@
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ {
config,
lib, lib,
pkgs, pkgs,
inputs, inputs,
@ -16,13 +15,10 @@
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
# Bootloader.
# boot.loader.efi.canTouchEfiVariables = true;
boot = { boot = {
initrd.systemd.enable = true; 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 = { lanzaboote = {
enable = true; enable = true;
@ -35,7 +31,6 @@
"nix-command" "nix-command"
"flakes" "flakes"
]; ];
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
}; };
boot.initrd.kernelModules = [ "amdgpu" ]; boot.initrd.kernelModules = [ "amdgpu" ];