Working on GTK

This commit is contained in:
2026-03-16 09:08:28 +00:00
parent 5f2abcd658
commit 63eb0bc840
2 changed files with 748 additions and 7 deletions
@@ -1,8 +1,18 @@
{ pkgs, inputs, ... }:
{
imports = [
inputs.catppuccin.nixosModules.catppuccin
];
catppuccin = {
gtk.enable = true;
gtk.flavor = "mocha";
gtk.style = "standard";
gtk.color = "blue";
};
environment.systemPackages = with pkgs; [
inputs.catppuccin.packages.${pkgs.system}.catppuccin-gtk-mocha
papirus-icon-theme
];
@@ -20,11 +30,10 @@
home.sessionVariables = {
GTK_ENABLE_DARK_MODE = "1";
};
/*
xdg.configFile."zen-browser/user.js".text = ''
user_pref("widget.non-native-theme.enabled", false);
user_pref("ui.systemUsesDarkTheme", 1);
'';
*/
xdg.configFile."zen-browser/user.js".text = ''
user_pref("widget.non-native-theme.enabled", false);
user_pref("ui.systemUsesDarkTheme", 1);
'';
};
}