Remove hardware-configuration from imports on conifiguration.nix - This is in flake.nix
This commit is contained in:
parent
78edd477c2
commit
9ac421b1f3
1 changed files with 1 additions and 3 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue