NixOS/wlin003_GamingPC/home/config-profile.nix

13 lines
137 B
Nix

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