mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
13 lines
242 B
Nix
13 lines
242 B
Nix
{
|
|
programs.wofi = {
|
|
enable = true;
|
|
style = ./basic-style.css;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/wofi/style.css
|
|
assertFileContent home-files/.config/wofi/style.css \
|
|
${./basic-style.css}
|
|
'';
|
|
}
|