modules(plasma): Add wallpaper engine + add yakuake and kgpg
All checks were successful
check / check (push) Successful in 29s

This commit is contained in:
Florian RICHER 2024-09-15 18:56:15 +02:00
parent f4467b9357
commit a9823d99c2
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
2 changed files with 16 additions and 1 deletions

View file

@ -3,7 +3,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nur.url = github:nix-community/NUR;
nur.url = "github:nix-community/NUR";
home-manager = {
url = "github:nix-community/home-manager";

View file

@ -3,6 +3,10 @@
with lib;
let
cfg = config.modules.system.desktop.plasma;
nixpkgsPr = builtins.fetchTarball {
url = "https://github.com/Sicheng-Pan/nixpkgs/archive/5ba93319d81da028339755243fa405556a2b18d7.tar.gz";
sha256 = "0xiighffwyhis6ni815s6bqcrvhsr3s7c208sq3c4y5p2f1g397w";
};
in
{
options.modules.system.desktop.plasma = {
@ -26,6 +30,17 @@ in
environment.systemPackages = with pkgs; with kdePackages; [
krfb # Use by kdeconnect for virtualmonitorplugin "krfb-virtualmonitor"
discover
kgpg
yakuake
### wallpaper-engine-plugin
(callPackage "${nixpkgsPr}/pkgs/kde/third-party/wallpaper-engine-plugin/default.nix" {})
qtmultimedia
qtwebchannel
qtwebengine
qtwebsockets
(python3.withPackages (python-pkgs: [ python-pkgs.websockets ]))
###
];
};
}