Files
NixOS/nixos_24.11_wlin001/home/config-profile.nix
2025-04-30 20:47:57 +02:00

13 lines
137 B
Nix

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