refactor: improve suite formatting
This commit is contained in:
parent
6878eb87fd
commit
98ac996979
1 changed files with 11 additions and 11 deletions
22
flake.nix
22
flake.nix
|
@ -132,18 +132,18 @@
|
|||
profiles = digga.lib.rakeLeaves ./profiles // {
|
||||
users = digga.lib.rakeLeaves ./users;
|
||||
};
|
||||
suites = with profiles; rec {
|
||||
base = [
|
||||
core
|
||||
users.root
|
||||
users.infinidoge
|
||||
];
|
||||
graphic = base ++ [ graphical.qtile ];
|
||||
suites = with profiles; self.lib.flattenSetList
|
||||
rec {
|
||||
base = [
|
||||
core
|
||||
(with users; [ root infinidoge ])
|
||||
];
|
||||
graphic = base ++ [ graphical.qtile ];
|
||||
|
||||
develop = nixos.lib.lists.flatten [
|
||||
(with profiles.develop.programming; [ python racket ])
|
||||
];
|
||||
};
|
||||
develop = [
|
||||
(with profiles.develop.programming; [ python racket ])
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue