mirror of
https://github.com/divnix/digga.git
synced 2024-11-23 20:22:04 +03:00
11 lines
192 B
Nix
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 ];
|
|
};
|
|
}
|