From 74cdc2bee83bd4481c70afd6a830ad08152d7f0f Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 21 Oct 2021 23:09:47 -0400 Subject: [PATCH] Infini-FRAMEWORK: switch imports to flattened list --- hosts/Infini-FRAMEWORK/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hosts/Infini-FRAMEWORK/default.nix b/hosts/Infini-FRAMEWORK/default.nix index 2c64657..b1fe156 100644 --- a/hosts/Infini-FRAMEWORK/default.nix +++ b/hosts/Infini-FRAMEWORK/default.nix @@ -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";