blob: 3a86b142b2f29462d6061db03518a99a9dc931e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{
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];
};
};
}
|