Implemented custom system for creating and distributing color schemes based on wallpapers, and also cycling through wallpapers.
nixfmt'd the codebase
This commit is contained in:
@@ -1,9 +1,16 @@
|
||||
{ super, host, root }:
|
||||
{
|
||||
super,
|
||||
host,
|
||||
root,
|
||||
}:
|
||||
|
||||
{
|
||||
fetchfromgh = super.callPackage ./templates/fetchfromgh.nix {};
|
||||
mkshell = super.callPackage ./templates/mkshell.nix {};
|
||||
garbage-collect = super.callPackage ./garbage-collect.nix {};
|
||||
check_updates = super.callPackage ./check_updates.nix {};
|
||||
rebuild = super.callPackage ./rebuild.nix { inherit host; self = root; };
|
||||
fetchfromgh = super.callPackage ./templates/fetchfromgh.nix { };
|
||||
mkshell = super.callPackage ./templates/mkshell.nix { };
|
||||
garbage-collect = super.callPackage ./garbage-collect.nix { };
|
||||
check_updates = super.callPackage ./check_updates.nix { };
|
||||
rebuild = super.callPackage ./rebuild.nix {
|
||||
inherit host;
|
||||
self = root;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user