nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

cursor.nix (278B)


      1 { pkgs, lib, ... }:
      2 
      3 {
      4 home.pointerCursor = {
      5   gtk.enable = true;
      6   package = pkgs.posy-cursors;
      7   name = "Posy_Cursor_Black";
      8   size = 24;
      9 };
     10 
     11 nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
     12              "posy-cursors"
     13            ];
     14          }
     15