fix: betterlockscreen failing on suspend

This commit is contained in:
Noah Masur 2023-07-20 22:14:46 -04:00
parent cb15cc209b
commit 8d09544663
2 changed files with 5 additions and 0 deletions

View File

@ -149,6 +149,7 @@
(import ./overlays/calibre-web.nix)
(import ./overlays/disko.nix inputs)
(import ./overlays/tree-sitter.nix inputs)
(import ./overlays/betterlockscreen.nix)
];
# System types to support.

View File

@ -0,0 +1,4 @@
# Disable dunst so that it's not attempting to reach a non-existent dunst service
_final: prev: {
betterlockscreen = prev.betterlockscreen.override { withDunst = false; };
}