blob: d65830b643407cca2ab169b812c8badef722543d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
mkDevenv = {
devenv,
flake-parts,
my-nixpkgs,
...
} @ inputs: config:
flake-parts.lib.mkFlake {inherit inputs;} {
imports = [devenv.flakeModule];
systems = ["x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
perSystem = _: {
devenv.shells.default = {
imports = [my-nixpkgs.devenvModules.personal config];
};
};
};
}
|