nixos/pantheon: use new notifications

We have this bug https://github.com/elementary/gala/issues/636
when using notifications in gala. It's likely to not really be fixed
because all development is on the new notifications server.
This commit is contained in:
worldofpeace 2020-03-31 22:19:56 -04:00
parent b0f0003c6e
commit 50fe769887
2 changed files with 8 additions and 0 deletions

View file

@ -208,6 +208,7 @@ in
# Services
elementary-capnet-assist
elementary-dpms-helper
elementary-notifications
elementary-settings-daemon
pantheon-agent-geoclue2
pantheon-agent-polkit

View file

@ -10,6 +10,7 @@
, polkit
, accountsservice
, python3
, fetchpatch
}:
stdenv.mkDerivation rec {
@ -32,6 +33,12 @@ stdenv.mkDerivation rec {
};
patches = [
# Use new notifications
(fetchpatch {
url = "https://github.com/elementary/default-settings/commit/0658bb75b9f49f58b35746d05fb6c4b811f125e9.patch";
sha256 = "0wa7iq0vfp2av5v23w94a5844ddj4g48d4wk3yrp745dyrimg739";
})
# https://github.com/elementary/default-settings/pull/119
./0001-Build-with-Meson.patch
];