devos/suites/default.nix
2021-05-08 11:49:24 +02:00

12 lines
438 B
Nix

{ users, profiles, userProfiles, ... }:
{
system = with profiles; rec {
base = [ 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 androidev ];
};
user = with userProfiles; rec {
base = [ direnv git ];
};
}