1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-09 22:58:43 +02:00
home-manager/tests/modules/services/window-managers/sway/sway-stubs.nix
Robert Helgesson c8c6a52702
sway: fix failing tests
Due to a recent change in Nixpkgs, the version field is required for
the sway package.
2023-12-20 22:29:00 +01:00

14 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 = { };
};
}