devos/suites/default.nix

13 lines
398 B
Nix
Raw Normal View History

{ users, profiles, userProfiles, ... }:
{
system = with profiles; rec {
2021-04-06 20:59:09 +02:00
base = [ users.mae users.root ];
2021-04-09 19:51:39 +02:00
workstation = base ++ [ sway develop game profiles.workstation ssh flatpak torrents ];
2021-04-08 22:00:48 +02:00
desktop = workstation ++ [ amd school three_dee ];
2021-04-08 12:35:13 +02:00
lap = workstation ++ [ 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
}