devos/suites/default.nix

13 lines
428 B
Nix
Raw Normal View History

{ users, profiles, userProfiles, ... }:
{
system = with profiles; rec {
base = [ users.root ];
2021-04-25 23:38:47 +02:00
workstation = [ users.root sway develop game profiles.workstation ssh flatpak torrents pwn tor ];
2021-04-15 14:40:48 +02:00
desktop = workstation ++ [ users.mae-desk amd school three_dee ];
2021-04-24 23:26:09 +02:00
lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager ];
2021-02-06 09:31:48 +01:00
};
user = with userProfiles; rec {
base = [ direnv git ];
};
2021-02-06 09:31:48 +01:00
}