users/infinidoge: change imports to flattened list

This commit is contained in:
Infinidoge 2021-10-21 23:12:10 -04:00
parent 74cdc2bee8
commit 6b6560b66d

View file

@ -1,17 +1,17 @@
{ config, self, lib, pkgs, suites, profiles, inputs, ... }: {
imports = lib.our.flattenListSet {
suites = with suites; [ develop ];
};
imports = lib.lists.flatten [
(with suites; [ develop ])
];
home-manager.users.infinidoge = { config, suites, profiles, ... }: {
imports = lib.our.flattenListSet {
suites = with suites; [ base ];
profiles = with profiles; [
imports = lib.lists.flatten [
(with suites; [ base ])
(with profiles; [
pass
discord
gaming
];
};
])
];
programs.git = {
userEmail = "infinidoge@doge-inc.net";