mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
5160039edc
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
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
|
|
'';
|
|
};
|
|
}
|