Regenerated

This commit is contained in:
2026-03-31 15:36:11 +00:00
parent 2b2da27d20
commit 2758b7cfae
3 changed files with 328 additions and 342 deletions
+296 -301
View File
File diff suppressed because it is too large Load Diff
+16 -21
View File
@@ -2362,11 +2362,6 @@ let
moduleName = "stylix"; moduleName = "stylix";
assetPath = "${flakeRoot}/generated/.config/${moduleName}"; assetPath = "${flakeRoot}/generated/.config/${moduleName}";
assetFiles = builtins.attrNames (builtins.readDir assetPath);
stylixFiles = lib.genAttrs assetFiles (f: {
source = "${assetPath}/${f}";
});
stylixConfFile = "${assetPath}/stylix.conf"; stylixConfFile = "${assetPath}/stylix.conf";
stylixConf = stylixConf =
@@ -2398,13 +2393,15 @@ in
################################# #################################
stylix = { stylix = {
enable = true; enable = true;
base16Scheme = "${flakeRoot}/assets/traveldroid/theming/stylix/catppuccin-mocha.yaml"; base16Scheme = "${flakeRoot}/assets/traveldroid/theming/stylix/catppuccin-mocha.yaml";
polarity = "dark"; polarity = "dark";
targets = { targets = {
gtk.enable = true; gtk.enable = true;
qt.enable = true; qt.enable = true;
}; };
# Define FULL cursor set OR remove entirely
cursor = { cursor = {
name = cursorName; name = cursorName;
package = pkgs.phinger-cursors; package = pkgs.phinger-cursors;
@@ -2417,22 +2414,18 @@ in
################################# #################################
home-manager.users = { home-manager.users = {
"${username}" = { "${username}" = {
home.file = {
".config/stylix/stylix.conf" = { #################################
text = builtins.readFile "${assetPath}/stylix.conf"; # ONLY custom file (safe)
force = true; #################################
}; home.file.".config/stylix/stylix.conf" = {
".config/stylix/palette.html" = { text = stylixConf;
text = builtins.readFile "${assetPath}/palette.html"; force = true;
force = true;
};
".config/stylix/palette.json" = {
text = builtins.readFile "${assetPath}/palette.json";
force = true;
};
}; };
#################################
# Environment variables
#################################
home.sessionVariables = { home.sessionVariables = {
STYLIX_CONF = "$HOME/.config/stylix/stylix.conf"; STYLIX_CONF = "$HOME/.config/stylix/stylix.conf";
XCURSOR_THEME = cursorName; XCURSOR_THEME = cursorName;
@@ -2441,11 +2434,13 @@ in
HYPRCURSOR_SIZE = toString cursorSize; HYPRCURSOR_SIZE = toString cursorSize;
}; };
#################################
# Override GTK theme if needed
#################################
gtk.theme.name = lib.mkForce "Catppuccin-Mocha-Standard-Blue-Dark"; gtk.theme.name = lib.mkForce "Catppuccin-Mocha-Standard-Blue-Dark";
}; };
}; };
} }
#+END_SRC #+END_SRC
** =.config/stylix/stylix.conf= ** =.config/stylix/stylix.conf=
@@ -5,11 +5,6 @@ let
moduleName = "stylix"; moduleName = "stylix";
assetPath = "${flakeRoot}/generated/.config/${moduleName}"; assetPath = "${flakeRoot}/generated/.config/${moduleName}";
assetFiles = builtins.attrNames (builtins.readDir assetPath);
stylixFiles = lib.genAttrs assetFiles (f: {
source = "${assetPath}/${f}";
});
stylixConfFile = "${assetPath}/stylix.conf"; stylixConfFile = "${assetPath}/stylix.conf";
stylixConf = stylixConf =
@@ -41,13 +36,15 @@ in
################################# #################################
stylix = { stylix = {
enable = true; enable = true;
base16Scheme = "${flakeRoot}/assets/traveldroid/theming/stylix/catppuccin-mocha.yaml"; base16Scheme = "${flakeRoot}/assets/traveldroid/theming/stylix/catppuccin-mocha.yaml";
polarity = "dark"; polarity = "dark";
targets = { targets = {
gtk.enable = true; gtk.enable = true;
qt.enable = true; qt.enable = true;
}; };
# Define FULL cursor set OR remove entirely
cursor = { cursor = {
name = cursorName; name = cursorName;
package = pkgs.phinger-cursors; package = pkgs.phinger-cursors;
@@ -60,22 +57,18 @@ in
################################# #################################
home-manager.users = { home-manager.users = {
"${username}" = { "${username}" = {
home.file = {
".config/stylix/stylix.conf" = { #################################
text = builtins.readFile "${assetPath}/stylix.conf"; # ONLY custom file (safe)
force = true; #################################
}; home.file.".config/stylix/stylix.conf" = {
".config/stylix/palette.html" = { text = stylixConf;
text = builtins.readFile "${assetPath}/palette.html"; force = true;
force = true;
};
".config/stylix/palette.json" = {
text = builtins.readFile "${assetPath}/palette.json";
force = true;
};
}; };
#################################
# Environment variables
#################################
home.sessionVariables = { home.sessionVariables = {
STYLIX_CONF = "$HOME/.config/stylix/stylix.conf"; STYLIX_CONF = "$HOME/.config/stylix/stylix.conf";
XCURSOR_THEME = cursorName; XCURSOR_THEME = cursorName;
@@ -84,6 +77,9 @@ in
HYPRCURSOR_SIZE = toString cursorSize; HYPRCURSOR_SIZE = toString cursorSize;
}; };
#################################
# Override GTK theme if needed
#################################
gtk.theme.name = lib.mkForce "Catppuccin-Mocha-Standard-Blue-Dark"; gtk.theme.name = lib.mkForce "Catppuccin-Mocha-Standard-Blue-Dark";
}; };
}; };