users/infinidoge: change imports to flattened list
This commit is contained in:
parent
74cdc2bee8
commit
6b6560b66d
1 changed files with 8 additions and 8 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue