fix: Linux packages were being ignored

This commit is contained in:
uttarayan21
2025-02-05 17:42:08 +05:30
parent 9c8d29ed8d
commit e6037d27d3
3 changed files with 7 additions and 14 deletions

View File

@@ -4,7 +4,7 @@
...
}: {
gtk = {
enable = device.hasGui;
enable = true;
theme = {
name = "catppuccin-mocha-mauve-standard+normal";
package = pkgs.adwaita-icon-theme;
@@ -32,4 +32,8 @@
gtk3.extraConfig = {gtk-application-prefer-dark-theme = 1;};
gtk4.extraConfig = {gtk-application-prefer-dark-theme = 1;};
};
home.packages = [
pkgs.catppuccinThemes.gtk
pkgs.catppuccinThemes.papirus-folders
];
}