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