blob: f0c8322972a8558ebdb513f883a335d882736143 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
devenv,
flake-parts,
my-nixpkgs,
...
}@inputs:
config:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = builtins.attrValues { inherit (my-nixpkgs.flakeModules) personal devenv; };
perSystem = _: {
devenv.shells.default = {
imports = [ config ];
};
};
}
|