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:
2026-03-09 22:02:46 -04:00
parent 4308b8eb16
commit 8ee748a997
145 changed files with 2776 additions and 1125 deletions

View File

@@ -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; };