1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 22:07:30 +02:00
home-manager/tests/modules/services/window-managers/sway/sway-stubs.nix
Robert Helgesson d07ec93a9d
sway: fix failing tests
Due to a recent change in Nixpkgs, the version field is required for
the sway package.
2024-04-10 21:26:58 +02:00

13 lines
318 B
Nix

{
# Avoid unnecessary downloads in CI jobs and/or make out paths constant, i.e.,
# not containing hashes, version numbers etc.
test.stubs = {
dmenu = { };
foot = { };
i3status = { };
sway = { version = "1"; };
sway-unwrapped = { version = "1"; };
swaybg = { };
xwayland = { };
};
}