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