From 9ac421b1f35f06c58e682525071b9d7edc3de96f Mon Sep 17 00:00:00 2001 From: iFargle Date: Sat, 1 Jul 2023 08:53:34 +0900 Subject: [PATCH] Remove hardware-configuration from imports on conifiguration.nix - This is in flake.nix --- laptop/configuration.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/laptop/configuration.nix b/laptop/configuration.nix index 2a4b2fb5..99f3a6de 100644 --- a/laptop/configuration.nix +++ b/laptop/configuration.nix @@ -13,9 +13,6 @@ { lib, config, pkgs, ... }: { imports = [ - # Include the results of the hardware scan. - # Should be set on the machine's configuration.nix - # ./hardware-configuration.nix # Home-Manager Nix configuration file. ./home-manager.nix # Gnome configuration file. @@ -42,6 +39,7 @@ boot.plymouth.enable = true; boot.initrd.systemd.enable = true; boot.kernelParams = ["quiet"]; + # SecureBoot boot.loader.systemd-boot.enable = lib.mkForce false; boot.lanzaboote.enable = true;