1
Fork 0
satellite/modules/themes/gtk.nix

11 lines
157 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
theme = pkgs.myThemes.current;
in
{
home-manager.users.adrielus.gtk = {
enable = true;
2022-05-11 23:11:54 +02:00
theme = theme.gtk.path or null;
};
}