feat(stylix): add cursor
This commit is contained in:
parent
4f6fb110d6
commit
18379a72b7
1 changed files with 10 additions and 3 deletions
|
@ -1,10 +1,17 @@
|
||||||
{ inputs, ... }:
|
{ inputs, pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
inputs.stylix.nixosModules.stylix
|
inputs.stylix.nixosModules.stylix
|
||||||
./themes/darkviolet.nix
|
./themes/darkviolet.nix
|
||||||
./fonts/sauce-code-pro.nix
|
./fonts/sauce-code-pro.nix
|
||||||
];
|
];
|
||||||
stylix.enable = true;
|
stylix = {
|
||||||
stylix.image = ../../media/wallpaper.jpg;
|
enable = true;
|
||||||
|
image = ../../media/wallpaper.jpg;
|
||||||
|
cursor = {
|
||||||
|
name = "macOS dsfs";
|
||||||
|
package = pkgs.apple-cursor;
|
||||||
|
size = 20;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue