fix(temp): change lib.our to test

This commit is contained in:
Infinidoge 2021-09-24 09:47:17 -04:00
parent e2898d00fb
commit 72059d7736
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
{ suites, profiles, pkgs, lib, ... }: {
imports = lib.flattenListSet {
{ suites, profiles, pkgs, lib, test, ... }: {
imports = test.flattenListSet {
suites = suites.graphic;
imports = [ ./hardware-configuration.nix ];
profiles = with profiles;

View file

@ -1,6 +1,6 @@
{ config, self, lib, pkgs, ... }: {
{ config, self, lib, pkgs, test, ... }: {
home-manager.users.infinidoge = { suites, profiles, ... }: {
imports = lib.our.flattenListSet {
imports = test.flattenListSet {
suites = with suites; [ base ];
};