actually fix it
This commit is contained in:
parent
9eaebcc4e0
commit
998aa2fa6f
1 changed files with 10 additions and 8 deletions
18
flake.nix
18
flake.nix
|
@ -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;
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue