summaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
authorbrustybee <beebeeb5k@gmail.com>2026-04-05 23:32:45 +0530
committerbrustybee <beebeeb5k@gmail.com>2026-04-05 23:32:45 +0530
commitf5b78ff561eff75c803ed1ef6e736a6c991cd135 (patch)
tree96faf0aa617cd1736e9e5f79a870513045c00b7c /users
parentee5246d97d338b2b9b3562f7d483d498b78e19c8 (diff)
idk
- add miku cursor - nightlight support on xorg - bring back st and xorg tools back in this repo - add themed_cursor patch st ( kinda manully )
Diffstat (limited to 'users')
-rw-r--r--users/common.nix23
1 files changed, 20 insertions, 3 deletions
diff --git a/users/common.nix b/users/common.nix
index a3cda21..2390e7f 100644
--- a/users/common.nix
+++ b/users/common.nix
@@ -3,6 +3,23 @@
config,
...
}:
+let
+ mikuCursor = pkgs.stdenv.mkDerivation {
+ pname = "miku-cursor";
+ version = "1.0";
+ src = pkgs.fetchgit {
+ url = "https://github.com/supermariofps/hatsune-miku-windows-linux-cursors.git";
+ rev = "471ff88";
+ hash = "sha256-HCHo4GwWLvjjnKWNiHb156Z+NQqliqLX1T1qNxMEMfE=";
+ };
+ unpackPhase = "true";
+
+ installPhase = ''
+ mkdir -p $out/share/icons
+ cp -r $src/miku-cursor-linux $out/share/icons/miku-cursor
+ '';
+ };
+in
{
programs.git = {
enable = true;
@@ -21,15 +38,15 @@
};
home.pointerCursor = {
- size = 16;
+ size = 36;
enable = true;
x11.enable = true;
gtk.enable = true;
hyprcursor.size = 16;
dotIcons.enable = true;
hyprcursor.enable = true;
- name = "material_light_cursors";
- package = pkgs.material-cursors;
+ name = "miku-cursor";
+ package = mikuCursor;
};
dconf.settings = {