mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 07:31:03 +01:00
19 lines
309 B
Nix
19 lines
309 B
Nix
{
|
|
config,
|
|
lib,
|
|
realPkgs,
|
|
...
|
|
}:
|
|
|
|
lib.mkIf config.test.enableBig {
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
checkConfig = true;
|
|
};
|
|
|
|
nixpkgs.overlays = [ (self: super: { inherit (realPkgs) xvfb-run; }) ];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/sway/config
|
|
'';
|
|
}
|