feat: a bunch of changes i forgot to commit

This commit is contained in:
Artur Manuel 2024-11-25 21:04:18 +00:00
commit 8141140de9
21 changed files with 2871 additions and 186 deletions

View file

@ -1,10 +1,9 @@
{
inputs,
pkgs,
lib,
...
}: let
gtkTheme = pkgs.rose-pine-gtk-theme;
in {
}: {
programs.dconf = {
profiles.user.databases = [
{
@ -13,8 +12,8 @@ in {
color-scheme = "prefer-dark";
cursor-size = lib.gvariant.mkUint32 24;
cursor-theme = "BreezeX-RosePine-Linux";
gtk-theme = "rose-pine";
icon-theme = "rose-pine";
gtk-theme = "rose-pine";
};
};
}
@ -30,13 +29,15 @@ in {
environment.systemPackages = builtins.attrValues {
inherit
(pkgs)
rose-pine-gtk-theme
rose-pine-cursor
rose-pine-icon-theme
libadwaita # workaround for PyGObject to give apps libadwaita
;
inherit gtkTheme;
};
systemd.user.tmpfiles.users.artur.rules = [
"L+ %h/.config/gtk-4.0/gtk.css - - - - ${gtkTheme}/share/themes/rose-pine/gtk-4.0/gtk.css"
systemd.user.tmpfiles.rules = [
"L+ %h/.config/gtk-4.0/gtk.css - - - - ${pkgs.rose-pine-gtk-theme}/share/themes/rose-pine/gtk-4.0/gtk.css"
"L+ %h/.config/gtk-4.0/gtk-dark.css - - - - ${pkgs.rose-pine-gtk-theme}/share/themes/rose-pine/gtk-4.0/gtk.css"
];
}