From a19c737fcd50ad9042b89b9154e27623db34db3b Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Tue, 20 Feb 2024 00:02:42 +0100 Subject: [PATCH] Add Plasma Integration --- home/programs/chromium.nix | 1 + modules/plasma.nix | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/home/programs/chromium.nix b/home/programs/chromium.nix index 7c41b2d..d8443ca 100644 --- a/home/programs/chromium.nix +++ b/home/programs/chromium.nix @@ -9,6 +9,7 @@ { id = "nngceckbapebfimnlniiiahkandclblb"; } # Bitwarden { id = "fnaicdffflnofjppbagibeoednhnbjhg"; } # Floccus Bookmark manager { id = "fihnjjcciajhdojfnbdddfaoknhalnja"; } # I don't care about cookies + { id = "cimiefiiaegbelhefglklhhakcgmhkai"; } # Plasma Integration ]; }; } \ No newline at end of file diff --git a/modules/plasma.nix b/modules/plasma.nix index 2085206..39a8d66 100644 --- a/modules/plasma.nix +++ b/modules/plasma.nix @@ -7,4 +7,8 @@ services.xserver.displayManager.sddm.enable = true; services.xserver.displayManager.defaultSession = "plasmawayland"; services.xserver.desktopManager.plasma5.enable = true; + + environment.systemPackages = with pkgs; [ + libsForQt5.plasma-browser-integration + ]; }