1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 04:43:28 +02:00
home-manager/tests/modules/programs/wofi/empty-configuration.nix
Christoph Heiss 5160039edc
wofi: add module (#3786)
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-04-20 00:11:30 -06:00

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
'';
};
}