mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
sway-stubs: add more stubs
Reducing closure from 500MB to 357MB
This commit is contained in:
parent
a8159195bf
commit
644552519e
1 changed files with 10 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{ config, lib, ... }: {
|
||||||
# Avoid unnecessary downloads in CI jobs and/or make out paths constant, i.e.,
|
# Avoid unnecessary downloads in CI jobs and/or make out paths constant, i.e.,
|
||||||
# not containing hashes, version numbers etc.
|
# not containing hashes, version numbers etc.
|
||||||
test.stubs = {
|
test.stubs = {
|
||||||
|
|
@ -10,4 +10,13 @@
|
||||||
swaybg = { };
|
swaybg = { };
|
||||||
xwayland = { };
|
xwayland = { };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(_final: _prev: {
|
||||||
|
procps = config.lib.test.mkStubPackage { name = "procps"; };
|
||||||
|
dbus = config.lib.test.mkStubPackage { name = "dbus"; };
|
||||||
|
systemd =
|
||||||
|
lib.makeOverridable (_attrs: config.lib.test.mkStubPackage { }) { };
|
||||||
|
})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue