13 lines
137 B
Nix
13 lines
137 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
home.file = {
|
||
|
".profile" = {
|
||
|
text = ''
|
||
|
export GTK_THEME=Arc-Dark
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|