Skip to content

Commit 7b0baf3

Browse files
committed
remove no longer needed overlays
1 parent 3c91a58 commit 7b0baf3

4 files changed

Lines changed: 18 additions & 35 deletions

File tree

flake.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/mkSystem.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ nixpkgs.lib.nixosSystem {
2121
nixpkgs.config.allowUnfree = true;
2222
nixpkgs.overlays = [
2323
(import ../overlays/ai-trace-scanner.nix inputs)
24-
(import ../overlays/copilot-fix.nix)
2524
(import ../overlays/cosmic-session-drm-fix.nix)
2625
(import ../overlays/openldap-no-tests.nix)
2726
(import ../overlays/gvfs-no-wsdd.nix)

overlays/copilot-fix.nix

Lines changed: 0 additions & 12 deletions
This file was deleted.

overlays/gvfs-no-wsdd.nix

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
# Drop the WSD (Windows Service Discovery) backend from gvfs. The shipped
2-
# wsdd.mount tries to spawn a `wsdd` Python daemon that we don't install,
3-
# producing recurring "No such file or directory" errors in the journal.
4-
# This host has no Samba/SMB peers, so removing the mount file silences the
5-
# noise without affecting other gvfs backends.
1+
# Disable the gvfs WSD (Windows Service Discovery) backend at build time.
2+
# The shipped wsdd.mount tries to spawn a `wsdd` Python daemon we don't
3+
# install, producing recurring "No such file or directory" errors in the
4+
# journal. This host has no Samba/SMB peers, so disabling the backend via
5+
# its meson option silences the noise without affecting other gvfs backends.
66
_final: prev: {
77
gvfs = prev.gvfs.overrideAttrs (oldAttrs: {
8-
postInstall =
9-
(oldAttrs.postInstall or "")
10-
+ ''
11-
rm -f $out/share/gvfs/mounts/wsdd.mount
12-
'';
8+
mesonFlags = (oldAttrs.mesonFlags or []) ++ ["-Dwsdd=false"];
139
});
1410
}

0 commit comments

Comments
 (0)