init for better maintainable versions and defaults

This commit is contained in:
twoneis 2025-03-23 21:44:25 +01:00
parent 94cf4c2005
commit 0733f4d2d1
6 changed files with 52 additions and 24 deletions

View file

@ -5,7 +5,7 @@
...
}: let
inherit (lib) mkIf mkForce;
inherit (config) conf;
inherit (config) conf versions;
time = pkgs.makeDesktopItem {
name = "peaclock-desktop";
desktopName = "Time";
@ -115,7 +115,16 @@ in
};
};
pointerCursor = import ./cursor.nix pkgs;
pointerCursor = rec {
gtk.enable = true;
x11.enable = true;
name = "BreezX-RosePine-Linux";
size = 24;
package = pkgs.callPackage ./cursor.nix {
name = name;
version = versions.rosepine-cursor;
};
};
};
qt = {