[fix] stylix: switch to enable-option branch
This commit is contained in:
parent
bf0ee5ba2b
commit
c44e03e533
3 changed files with 14 additions and 11 deletions
16
flake.lock
16
flake.lock
|
@ -284,16 +284,16 @@
|
||||||
"gnome-shell": {
|
"gnome-shell": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1698794309,
|
"lastModified": 1713702291,
|
||||||
"narHash": "sha256-/TIkZ8y5Wv3QHLFp79Poao9fINurKs5pa4z0CRe+F8s=",
|
"narHash": "sha256-zYP1ehjtcV8fo+c+JFfkAqktZ384Y+y779fzmR9lQAU=",
|
||||||
"owner": "GNOME",
|
"owner": "GNOME",
|
||||||
"repo": "gnome-shell",
|
"repo": "gnome-shell",
|
||||||
"rev": "a7c169c6c29cf02a4c392fa0acbbc5f5072823e7",
|
"rev": "0d0aadf013f78a7f7f1dc984d0d812971864b934",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "GNOME",
|
"owner": "GNOME",
|
||||||
"ref": "45.1",
|
"ref": "46.1",
|
||||||
"repo": "gnome-shell",
|
"repo": "gnome-shell",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
@ -535,16 +535,16 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1714908840,
|
"lastModified": 1716205882,
|
||||||
"narHash": "sha256-gO8C1BinP0Dd08xkRiJFap4f5mZTdHy3ia4/B7wTrBY=",
|
"narHash": "sha256-K0mH9Xhiae37eyxjwlmlo+ZqScRIh3rCDpXPzF/uBxI=",
|
||||||
"owner": "jalil-salame",
|
"owner": "jalil-salame",
|
||||||
"repo": "stylix",
|
"repo": "stylix",
|
||||||
"rev": "26fd8626ab3ed57fbf50c62fc92f685ab8d35c87",
|
"rev": "feeb35d2857ef6e32292ebdb862c2f6022c727fd",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "jalil-salame",
|
"owner": "jalil-salame",
|
||||||
"ref": "fallback-fonts-v2",
|
"ref": "enable-option",
|
||||||
"repo": "stylix",
|
"repo": "stylix",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
};
|
};
|
||||||
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
||||||
stylix = {
|
stylix = {
|
||||||
url = "github:jalil-salame/stylix/fallback-fonts-v2";
|
url = "github:jalil-salame/stylix/enable-option";
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.follows = "nixpkgs";
|
nixpkgs.follows = "nixpkgs";
|
||||||
home-manager.follows = "home-manager";
|
home-manager.follows = "home-manager";
|
||||||
|
|
|
@ -134,8 +134,11 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
# Set cursor style
|
# Set cursor style
|
||||||
stylix.cursor = cursor;
|
stylix = {inherit cursor;};
|
||||||
home.pointerCursor.gtk.enable = true;
|
home.pointerCursor = {
|
||||||
|
gtk.enable = true;
|
||||||
|
inherit (cursor) name package;
|
||||||
|
};
|
||||||
# Set Gtk theme
|
# Set Gtk theme
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue