nixos/profiles/hulk/theme.nix

38 lines
652 B
Nix
Raw Normal View History

2025-02-06 11:58:03 +01:00
{ pkgs, inputs, ... }:
let
nerdfonts = (pkgs.nerdfonts.override {
fonts = [
"CascadiaCode"
"JetBrainsMono"
"FiraCode"
"SpaceMono"
];
});
cursor-theme = "Bibata-Modern-Classic";
cursor-pkg = pkgs.bibata-cursors;
in
{
home = {
packages = with pkgs; [
material-symbols
noto-fonts
noto-fonts-cjk-sans
bibata-cursors
];
2025-02-13 22:32:30 +01:00
sessionVariables = {
2025-02-06 11:58:03 +01:00
XCURSOR_THEME = cursor-theme;
XCURSOR_SIZE = "24";
};
2025-02-13 22:32:30 +01:00
pointerCursor = {
2025-02-06 11:58:03 +01:00
package = cursor-pkg;
name = cursor-theme;
size = 24;
gtk.enable = true;
};
2025-02-13 22:32:30 +01:00
};
2025-02-06 11:58:03 +01:00
}