Add home manager

This commit is contained in:
2026-03-16 21:14:43 +01:00
parent 7175a457c7
commit d4b7339804
26 changed files with 740 additions and 0 deletions

26
home/wm/gtk.nix Normal file
View File

@@ -0,0 +1,26 @@
{ pkgs, ... }:
{
gtk = {
enable = true;
theme = {
name = "Orchis-dark";
package = pkgs.orchis-theme;
};
iconTheme = {
name = "Adwaita";
package = pkgs.adwaita-icon-theme;
};
cursorTheme = {
name = "Adwaita";
package = pkgs.adwaita-icon-theme;
};
};
home.sessionVariables = {
GTK_THEME = "Adwaita:dark"; # GTK apps dark theme
MOZ_GTK_THEME = "Adwaita:dark"; # Firefox respects this
GDK_DARK_THEME = "1"; # GTK4 apps dark mode
CHROME_FORCE_DARK_MODE = "1"; # Chromium / Chrome dark mode
};
}