1
1
mirror of https://github.com/divnix/digga.git synced 2024-11-23 20:22:04 +03:00
digga/profiles/suites.nix
2021-04-18 21:13:12 -06:00

11 lines
192 B
Nix

{ users, profiles, userProfiles, ... }:
{
system = with profiles; rec {
base = [ core users.nixos users.root ];
};
user = with userProfiles; rec {
base = [ direnv git ];
};
}