mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
14 lines
183 B
Nix
14 lines
183 B
Nix
{
|
|
config = {
|
|
programs.eww = {
|
|
enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
yuckDir=home-files/.config/eww
|
|
|
|
assertPathNotExists $yuckDir/eww.yuck
|
|
'';
|
|
};
|
|
}
|