mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
16 lines
287 B
Nix
16 lines
287 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.wofi = {
|
||
|
enable = true;
|
||
|
package = pkgs.writeScriptBin "dummy-wofi" "";
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertPathNotExists home-files/.config/wofi/config
|
||
|
assertPathNotExists home-files/.config/wofi/style.css
|
||
|
'';
|
||
|
};
|
||
|
}
|