devos/suites/default.nix
2021-04-28 22:00:44 +02:00

12 lines
433 B
Nix

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