actually fix it

This commit is contained in:
Vivian 2023-12-19 13:21:21 +01:00
parent 9eaebcc4e0
commit 998aa2fa6f

View file

@ -53,7 +53,15 @@
'';
};
nixosModules.default = { config }:
devShells.default = pkgs.mkShell {
shellHook = "${packages.default.preBuild}";
inherit (packages.default)
nativeBuildInputs buildInputs LIBCLANG_PATH;
};
}) // {
nixosModules.default = { config, lib, ... }:
with lib;
let cfg = config.services.gnome-autounlock-keyring;
in {
@ -72,11 +80,5 @@
};
};
};
devShells.default = pkgs.mkShell {
shellHook = "${packages.default.preBuild}";
inherit (packages.default)
nativeBuildInputs buildInputs LIBCLANG_PATH;
};
});
};
}