mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
42ba7b6304
Closes #2567
18 lines
415 B
Nix
18 lines
415 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./sway-stubs.nix ];
|
|
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { outPath = "@sway@"; };
|
|
config = null;
|
|
systemdIntegration = false;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/sway/config
|
|
assertFileContent home-files/.config/sway/config \
|
|
${pkgs.writeText "expected" ""}
|
|
'';
|
|
}
|