blob: a6f25373bf2e1d2800ac9940315af34ab9399f43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
config,
lib,
pkgs,
...
}:
{
imports = [ ./default.nix ];
seth = {
enable = true;
standalone.enable = true;
};
nix = lib.mkIf config.seth.standalone.enable { package = pkgs.nix; };
}
|