1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/tests/modules/services/window-managers/sway/sway-null-config.nix

23 lines
446 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
wayland.windowManager.sway = {
enable = true;
config = null;
systemdIntegration = false;
package = pkgs.sway;
};
nixpkgs.overlays = [ (import ./sway-overlay.nix) ];
nmt.script = ''
assertFileExists home-files/.config/sway/config
assertFileContent home-files/.config/sway/config \
${pkgs.writeText "expected" "\n"}
'';
};
}