diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2023-08-28 12:09:46 +0200 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2023-08-28 12:45:00 +0200 |
| commit | 390bbde8924e47e278b75ef412477f71781518cf (patch) | |
| tree | c8b8720ed05c77a1ddbdaf5ae5f98e3119c467d4 /lib/default.nix | |
| parent | 2aa5cffaf3b1461df12500f112ba1484ee4e8a2f (diff) | |
lib: mkDevenv: fix args
Diffstat (limited to 'lib/default.nix')
| -rw-r--r-- | lib/default.nix | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/default.nix b/lib/default.nix index 40758eb..d65830b 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -8,12 +8,10 @@ flake-parts.lib.mkFlake {inherit inputs;} { imports = [devenv.flakeModule]; systems = ["x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; - perSystem = {...} @ perSystemInputs: { - devenv.shells.default = - { - imports = [my-nixpkgs.devenvModules.personal]; - } - // config perSystemInputs; + perSystem = _: { + devenv.shells.default = { + imports = [my-nixpkgs.devenvModules.personal config]; + }; }; }; } |
