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, ... }: {
|
{ config, self, lib, pkgs, suites, profiles, inputs, ... }: {
|
||||||
imports = lib.our.flattenListSet {
|
imports = lib.lists.flatten [
|
||||||
suites = with suites; [ develop ];
|
(with suites; [ develop ])
|
||||||
};
|
];
|
||||||
|
|
||||||
home-manager.users.infinidoge = { config, suites, profiles, ... }: {
|
home-manager.users.infinidoge = { config, suites, profiles, ... }: {
|
||||||
imports = lib.our.flattenListSet {
|
imports = lib.lists.flatten [
|
||||||
suites = with suites; [ base ];
|
(with suites; [ base ])
|
||||||
profiles = with profiles; [
|
(with profiles; [
|
||||||
pass
|
pass
|
||||||
discord
|
discord
|
||||||
gaming
|
gaming
|
||||||
];
|
])
|
||||||
};
|
];
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
userEmail = "infinidoge@doge-inc.net";
|
userEmail = "infinidoge@doge-inc.net";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue