devos/suites/default.nix
2021-04-25 23:43:46 +02:00

12 lines
438 B
Nix

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