Style: Use google dot cursor.
This commit is contained in:
parent
2de214f667
commit
14b9f380ec
21
flake.lock
21
flake.lock
|
@ -195,6 +195,26 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nix-cursors": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1716041700,
|
||||||
|
"narHash": "sha256-4jDR/KQmtsDw/nCvpy9VvWQgtc+4R4eyrb8eJSz+KCw=",
|
||||||
|
"owner": "LilleAila",
|
||||||
|
"repo": "nix-cursors",
|
||||||
|
"rev": "d119b747e47a7a24660676f59c77272d664ec61e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "LilleAila",
|
||||||
|
"repo": "nix-cursors",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nix-formatter-pack": {
|
"nix-formatter-pack": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
|
@ -763,6 +783,7 @@
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
|
"nix-cursors": "nix-cursors",
|
||||||
"nix-on-droid": "nix-on-droid",
|
"nix-on-droid": "nix-on-droid",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"nixpkgsJobber": "nixpkgsJobber",
|
"nixpkgsJobber": "nixpkgsJobber",
|
||||||
|
|
15
flake.nix
15
flake.nix
|
@ -4,16 +4,16 @@
|
||||||
nixpkgsUnstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgsUnstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
nixpkgsMaster.url = "github:nixos/nixpkgs/master";
|
nixpkgsMaster.url = "github:nixos/nixpkgs/master";
|
||||||
|
|
||||||
home-manager = {
|
|
||||||
url = "github:nix-community/home-manager";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
stylix.url = "github:danth/stylix";
|
stylix.url = "github:danth/stylix";
|
||||||
|
|
||||||
nixpkgsJobber.url = "github:nixos/nixpkgs/051f920625ab5aabe37c920346e3e69d7d34400e";
|
nixpkgsJobber.url = "github:nixos/nixpkgs/051f920625ab5aabe37c920346e3e69d7d34400e";
|
||||||
poetry2nixJobber.url = "github:nix-community/poetry2nix/304f8235fb0729fd48567af34fcd1b58d18f9b95";
|
poetry2nixJobber.url = "github:nix-community/poetry2nix/304f8235fb0729fd48567af34fcd1b58d18f9b95";
|
||||||
|
|
||||||
|
home-manager = {
|
||||||
|
url = "github:nix-community/home-manager";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
nix-on-droid = {
|
nix-on-droid = {
|
||||||
url = "github:t184256/nix-on-droid/release-24.05";
|
url = "github:t184256/nix-on-droid/release-24.05";
|
||||||
inputs = {
|
inputs = {
|
||||||
|
@ -22,6 +22,11 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nix-cursors = {
|
||||||
|
url = "github:LilleAila/nix-cursors";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
nvimAlign = { flake = false; url = "github:echasnovski/mini.align"; };
|
nvimAlign = { flake = false; url = "github:echasnovski/mini.align"; };
|
||||||
nvimAutoclose = { flake = false; url = "github:m4xshen/autoclose.nvim"; };
|
nvimAutoclose = { flake = false; url = "github:m4xshen/autoclose.nvim"; };
|
||||||
nvimBufferline = { flake = false; url = "github:akinsho/bufferline.nvim"; };
|
nvimBufferline = { flake = false; url = "github:akinsho/bufferline.nvim"; };
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
{
|
{
|
||||||
__findFile,
|
__findFile,
|
||||||
config,
|
config,
|
||||||
|
inputs,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
|
@ -71,9 +72,14 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
cursor = {
|
cursor = {
|
||||||
name = mkStrOption "phinger-cursors-light";
|
package = mkPkgOption (inputs.nix-cursors.packages.${pkgs.system}.google-cursor.override {
|
||||||
package = mkPkgOption pkgs.phinger-cursors;
|
accent_color = "#${cfg.color.accent}";
|
||||||
size = mkIntOption 24;
|
background_color = "#${cfg.color.fg.light}";
|
||||||
|
outline_color = "#${cfg.color.border}";
|
||||||
|
});
|
||||||
|
# name = mkStrOption "Fuchsia-Custom";
|
||||||
|
name = mkStrOption "GoogleDot-Custom";
|
||||||
|
size = mkIntOption 18;
|
||||||
};
|
};
|
||||||
|
|
||||||
font = {
|
font = {
|
||||||
|
|
Loading…
Reference in a new issue