11 lines
149 B
Nix
11 lines
149 B
Nix
|
{ pkgs, ... }:
|
||
|
let
|
||
|
theme = pkgs.myThemes.current;
|
||
|
in
|
||
|
{
|
||
|
home-manager.users.adrielus.gtk = {
|
||
|
enable = true;
|
||
|
theme = theme.gtk.path;
|
||
|
};
|
||
|
}
|