devos/suites/default.nix

13 lines
445 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-15 19:27:15 +02:00
workstation = [ users.root sway develop game profiles.workstation ssh flatpak torrents pwn ];
2021-04-15 14:40:48 +02:00
desktop = workstation ++ [ users.mae-desk amd school three_dee ];
2021-04-15 14:43:45 +02:00
lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager hosts_block];
2021-02-06 09:31:48 +01:00
};
user = with userProfiles; rec {
base = [ direnv git ];
};
2021-02-06 09:31:48 +01:00
}