Remove hardware-configuration from imports on conifiguration.nix - This is in flake.nix

This commit is contained in:
iFargle 2023-07-01 08:53:34 +09:00
parent 78edd477c2
commit 9ac421b1f3

View file

@ -13,9 +13,6 @@
{ lib, config, pkgs, ... }: { { lib, config, pkgs, ... }: {
imports = 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 configuration file.
./home-manager.nix ./home-manager.nix
# Gnome configuration file. # Gnome configuration file.
@ -42,6 +39,7 @@
boot.plymouth.enable = true; boot.plymouth.enable = true;
boot.initrd.systemd.enable = true; boot.initrd.systemd.enable = true;
boot.kernelParams = ["quiet"]; boot.kernelParams = ["quiet"];
# SecureBoot # SecureBoot
boot.loader.systemd-boot.enable = lib.mkForce false; boot.loader.systemd-boot.enable = lib.mkForce false;
boot.lanzaboote.enable = true; boot.lanzaboote.enable = true;