NixOS/wlin003_GamingPC/home/config-profile.nix

13 lines
137 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
home.file = {
".profile" = {
text = ''
export GTK_THEME=Arc-Dark
'';
};
};
}