+6
users/mayer/stylix.conf.nix
+6
users/mayer/stylix.conf.nix
···
19
19
stylix.image = ./wallpaper.png;
20
20
stylix.polarity = "dark";
21
21
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
22
+
stylix.override = {
23
+
base00 = "#000000";
24
+
base01 = "#11111b";
25
+
base0D = "#cba6f7";
26
+
base0E = "#89b4fa";
27
+
};
22
28
23
29
stylix.cursor = {
24
30
package = pkgs.bibata-cursors;
+2
-2
users/modules/zed/default.nix
+2
-2
users/modules/zed/default.nix
···
3
3
stylix.targets.zed.enable = true;
4
4
programs.zed-editor = {
5
5
enable = true;
6
-
extensions = [ "nix" ];
7
-
extraPackages = with pkgs; [ nixd ];
6
+
extensions = [ "nix" "deno" "toml" "svelte" ];
7
+
extraPackages = with pkgs; [ nixd nil ];
8
8
installRemoteServer = true;
9
9
};
10
10
}