mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
c8c6a52702
Due to a recent change in Nixpkgs, the version field is required for the sway package.
13 lines
318 B
Nix
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 = { };
|
|
};
|
|
}
|