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