devos/suites/default.nix
2021-04-08 22:07:42 +02:00

12 lines
381 B
Nix

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