2021-03-20 17:36:14 +01:00
|
|
|
{ users, profiles, userProfiles, ... }:
|
|
|
|
{
|
|
|
|
system = with profiles; rec {
|
2021-04-06 20:59:09 +02:00
|
|
|
base = [ users.mae users.root ];
|
2021-04-08 12:35:13 +02:00
|
|
|
workstation = base ++ [ sway develop game profiles.workstation ssh ];
|
|
|
|
desktop = workstation ++ [ amd school ];
|
|
|
|
lap = workstation ++ [ laptop bluetooth print networkmanager ];
|
2021-02-06 09:31:48 +01:00
|
|
|
};
|
2021-03-20 17:36:14 +01:00
|
|
|
user = with userProfiles; rec {
|
2021-03-23 15:36:23 +01:00
|
|
|
base = [ direnv git ];
|
|
|
|
};
|
2021-02-06 09:31:48 +01:00
|
|
|
}
|