Infini-FRAMEWORK: switch imports to flattened list

This commit is contained in:
Infinidoge 2021-10-21 23:09:47 -04:00
parent ec86c99f5e
commit 74cdc2bee8

View file

@ -1,8 +1,8 @@
{ suites, profiles, pkgs, lib, ... }: { { suites, profiles, pkgs, lib, ... }: {
imports = lib.flattenListSet { imports = lib.lists.flatten [
suites = suites.graphic; (with suites; [ graphic ])
imports = [ ];
profiles = with profiles; [ (with profiles; [
boot.grub boot.grub
networking.wireless networking.wireless
@ -12,8 +12,8 @@
laptop laptop
gpu.intel gpu.intel
]) ])
]; ])
}; ];
system.stateVersion = "21.11"; system.stateVersion = "21.11";