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,4 +1,9 @@
|
||||
{ host ? "oganesson", root, ... }: self: super:
|
||||
{
|
||||
host ? "oganesson",
|
||||
root,
|
||||
...
|
||||
}:
|
||||
self: super:
|
||||
|
||||
let
|
||||
extraFigletFonts = super.fetchFromGitHub {
|
||||
@@ -13,7 +18,8 @@ let
|
||||
rev = "v0.4.2";
|
||||
sha256 = "sha256-y5H4m/1ZNYkvhYnfvKs2zVq6dzUgUYsu0UCBGpcoYgQ=";
|
||||
};
|
||||
in {
|
||||
in
|
||||
{
|
||||
vicut = super.rustPlatform.buildRustPackage {
|
||||
pname = "vicut";
|
||||
version = "v0.4.2";
|
||||
@@ -25,7 +31,7 @@ in {
|
||||
description = "A Vim-based, scriptable, headless text editor for the command line";
|
||||
homepage = "https://github.com/km-clay/vicut";
|
||||
license = super.lib.licenses.mit;
|
||||
maintainers = [];
|
||||
maintainers = [ ];
|
||||
};
|
||||
};
|
||||
|
||||
@@ -39,11 +45,18 @@ in {
|
||||
'';
|
||||
});
|
||||
|
||||
myPython = super.python3.withPackages (p: [
|
||||
p.evdev
|
||||
p.requests
|
||||
p.pillow
|
||||
p.pynvim
|
||||
]);
|
||||
|
||||
myPkgs = {
|
||||
slash = super.callPackage ./pkgs/slash/package.nix {};
|
||||
fzf-tab = super.callPackage ./pkgs/zsh-fzf-tab/package.nix {};
|
||||
noto-sans-jp = super.callPackage ./pkgs/noto-sans-jp/package.nix {};
|
||||
billy-font = super.callPackage ./pkgs/billy-font/package.nix {};
|
||||
slash = super.callPackage ./pkgs/slash/package.nix { };
|
||||
fzf-tab = super.callPackage ./pkgs/zsh-fzf-tab/package.nix { };
|
||||
noto-sans-jp = super.callPackage ./pkgs/noto-sans-jp/package.nix { };
|
||||
billy-font = super.callPackage ./pkgs/billy-font/package.nix { };
|
||||
};
|
||||
|
||||
myScripts = import ./scripts { inherit super root host; };
|
||||
|
||||
Reference in New Issue
Block a user