10 lines
145 B
Nix
10 lines
145 B
Nix
|
{ pkgs, ... }:
|
||
|
let
|
||
|
theme = pkgs.myThemes.current;
|
||
|
in
|
||
|
{
|
||
|
home-manager.users.adrielus.xresources = {
|
||
|
extraConfig = theme.xresources;
|
||
|
};
|
||
|
}
|