Compare commits

..

1 commit

Author SHA1 Message Date
ddb4cb6eae
[feat] scripts: import jpassmenu and RiiR
Some checks failed
/ check (push) Failing after 30s
/ build (docs) (push) Successful in 3s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 24s
/ build (nvim) (push) Successful in 15s
2024-07-18 23:19:54 +02:00

View file

@ -90,7 +90,7 @@
);
overlays = builtins.attrValues self.overlays;
scripts_definitions = import ./scripts;
scripts = pkgs: builtins.mapAttrs (_name: value: pkgs.callPackage value { }) scripts_definitions;
scripts = final: prev: builtins.mapAttrs (_name: value: prev.callPackage value { }) scripts_definitions;
in
{
checks = forEachSupportedSystem (
@ -121,7 +121,7 @@
packages = forEachSupportedSystem (
{ pkgs, system }:
scripts pkgs
scripts pkgs pkgs
// {
inherit (import ./docs { inherit pkgs lib; })
docs
@ -139,9 +139,9 @@
# Provide necessary overlays
overlays = {
inherit scripts;
nixvim = nixvim.overlays.default;
audiomenu = audiomenu.overlays.default;
scripts = _final: prev: scripts prev;
unstable =
final: prev:
let