75fa0ae5af
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
15 lines
287 B
Nix
15 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
|
|
'';
|
|
};
|
|
}
|