1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-26 06:44:14 +02:00
home-manager/tests/modules/services/window-managers/sway/swaynag-empty-settings.nix

14 lines
176 B
Nix
Raw Normal View History

2023-05-13 00:08:12 +02:00
{ ... }:
{
2023-05-13 00:08:12 +02:00
wayland.windowManager.sway.swaynag = {
enable = true;
2023-05-13 00:08:12 +02:00
settings = { };
};
2023-05-13 00:08:12 +02:00
nmt.script = ''
assertPathNotExists home-files/.config/swaynag
'';
}