devos/suites/default.nix
2021-06-06 12:41:59 +02:00

12 lines
453 B
Nix

{ users, profiles, userProfiles, ... }:
{
system = with profiles; rec {
base = [ users.root core ];
workstation = [ users.root sway develop game profiles.workstation ssh flatpak torrents pwn tor ];
desktop = workstation ++ [ users.mae-desk amd school three_dee androidev ];
lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager androidev ];
};
user = with userProfiles; rec {
base = [ direnv git ];
};
}