mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-09 18:26:54 +00:00
12 lines
182 B
Nix
12 lines
182 B
Nix
|
{ ... }: {
|
||
|
config = {
|
||
|
programs.eww = { enable = true; };
|
||
|
|
||
|
nmt.script = ''
|
||
|
yuckDir=home-files/.config/eww
|
||
|
|
||
|
assertPathNotExists $yuckDir/eww.yuck
|
||
|
'';
|
||
|
};
|
||
|
}
|