refactor(scoped): fix directory structure
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
13453f6839
commit
7b65696436
14 changed files with 12 additions and 12 deletions
|
@ -4,23 +4,23 @@
|
|||
...
|
||||
} @ inputs:
|
||||
lib.makeScope pkgs.newScope (drac: {
|
||||
bat = drac.callPackage ./bat.nix {
|
||||
bat = drac.callPackage ./bat {
|
||||
inherit (inputs) bat-theme-src mkVersion;
|
||||
};
|
||||
|
||||
git = drac.callPackage ./git.nix {
|
||||
git = drac.callPackage ./git {
|
||||
inherit (inputs) git-theme-src mkVersion;
|
||||
};
|
||||
|
||||
gtk = import ./gtk.nix {inherit (inputs) gtk-theme-src pkgs;};
|
||||
gtk = import ./gtk {inherit (inputs) gtk-theme-src pkgs;};
|
||||
|
||||
plymouth = drac.callPackage ./plymouth.nix {
|
||||
plymouth = drac.callPackage ./plymouth {
|
||||
inherit (inputs) dracula-plymouth-src mkVersion;
|
||||
};
|
||||
|
||||
sioyek = drac.callPackage ./sioyek.nix {
|
||||
sioyek = drac.callPackage ./sioyek {
|
||||
inherit (inputs) sioyek-theme-src mkVersion;
|
||||
};
|
||||
|
||||
wallpaper = drac.callPackage ./wallpaper.nix {};
|
||||
wallpaper = drac.callPackage ./wallpaper {};
|
||||
})
|
||||
|
|
|
@ -7,10 +7,10 @@ pkgs.lib.makeScope pkgs.newScope (mpv: let
|
|||
buildLuaScript = file:
|
||||
mpv.callPackage file (inputs // {inherit buildLua;});
|
||||
in {
|
||||
modernz = buildLuaScript ./modernz.nix;
|
||||
pointer-event = buildLuaScript ./pointer-event.nix;
|
||||
touch-gestures = buildLuaScript ./touch-gestures.nix;
|
||||
kdialog-open-files = buildLuaScript ./kdialog-open-files.nix;
|
||||
persist-properties = buildLuaScript ./persist-properties.nix;
|
||||
undo-redo = buildLuaScript ./undo-redo.nix;
|
||||
modernz = buildLuaScript ./modernz;
|
||||
pointer-event = buildLuaScript ./pointer-event;
|
||||
touch-gestures = buildLuaScript ./touch-gestures;
|
||||
kdialog-open-files = buildLuaScript ./kdialog-open-files;
|
||||
persist-properties = buildLuaScript ./persist-properties;
|
||||
undo-redo = buildLuaScript ./undo-redo;
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue