nix-config/modules2/gtk/theme.nix
Oliver Davies 3a6a2f0bcc
All checks were successful
/ check (push) Successful in 1m38s
Move gtk configuration
2025-07-28 01:40:45 +01:00

10 lines
160 B
Nix

{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
gtk.theme = {
name = "Arc-Dark";
package = pkgs.arc-theme;
};
};
}