From 96f35ab9d66be28f19d849ad0f4f108db74903fa Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 13 Aug 2025 23:44:19 -0600 Subject: [PATCH] [NixOS] Enable rumno service --- nixos/desktop.nix | 3 +++ nixos/flake.nix | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/nixos/desktop.nix b/nixos/desktop.nix index dc6de547..5cf7425a 100644 --- a/nixos/desktop.nix +++ b/nixos/desktop.nix @@ -34,6 +34,9 @@ makeEnable config "myModules.desktop" true { services.gnome.gnome-keyring.enable = true; + # Visual notification manager + services.rumno.enable = true; + environment.systemPackages = with pkgs; [ # Appearance adwaita-icon-theme diff --git a/nixos/flake.nix b/nixos/flake.nix index 8a2d7406..5eaa667b 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -156,10 +156,10 @@ name = "nixpkgs-patched"; src = nixpkgs; patches = [ - # Add your patches here + # Rumno service PR (bootstrapPkgs.fetchpatch { - url = "https://github.com/colonelpanic8/nixpkgs/commit/4a98b6d1faccd6d572596c5d867b479aebf8cef8.patch"; - hash = "sha256-eZ7vQQho+ksrZvTjP0U/qDDYCJZq3NC2Ki44cBLfnkM="; + url = "https://github.com/NixOS/nixpkgs/pull/433540.patch"; + hash = "sha256-4Qe/RPKXJV77/MyeCpyajJGZrcesAH82UlhtD9Sn6ds="; }) ]; };