Added stylix (again)

This commit is contained in:
2025-11-01 23:09:40 -04:00
parent 626ede8955
commit dd4274f036
2 changed files with 58 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
./packages.nix ./packages.nix
# ./plasma.nix # ./plasma.nix
./ssh.nix ./ssh.nix
./stylix.nix
./vscode.nix ./vscode.nix
./xdg.nix ./xdg.nix
./zsh.nix ./zsh.nix

57
modules/home/stylix.nix Normal file
View File

@@ -0,0 +1,57 @@
{
inputs,
pkgs,
...
}:
{
imports = [
inputs.stylix.homeModules.stylix
];
stylix = {
enable = true;
autoEnable = false;
polarity = "dark";
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
targets = {
# firefox = {
# enable = true;
# colorTheme.enable = true;
# firefoxGnomeTheme.enable = true;
# profileNames = [ "eclypse" ];
# };
# gtk = {
# enable = true;
# };
qt = {
enable = true;
};
};
};
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 17;
};
gtk = {
enable = true;
colorScheme = "dark";
theme = {
name = "Tokyonight-Dark";
package = pkgs.tokyonight-gtk-theme.override {
tweakVariants = [ "macos" ];
};
};
};
# home.pointerCursor = {
# enable = true;
# gtk.enable = true;
# name = "Catppuccin-Mocha-Dark-Cursors";
# package = pkgs.catppuccin-cursors.mochaDark;
# size = 16;
# };
}