modules(plasma): Add wallpaper engine + add yakuake and kgpg
All checks were successful
check / check (push) Successful in 29s
All checks were successful
check / check (push) Successful in 29s
This commit is contained in:
parent
f4467b9357
commit
a9823d99c2
2 changed files with 16 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
nur.url = github:nix-community/NUR;
|
nur.url = "github:nix-community/NUR";
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
url = "github:nix-community/home-manager";
|
||||||
|
|
|
@ -3,6 +3,10 @@
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.modules.system.desktop.plasma;
|
cfg = config.modules.system.desktop.plasma;
|
||||||
|
nixpkgsPr = builtins.fetchTarball {
|
||||||
|
url = "https://github.com/Sicheng-Pan/nixpkgs/archive/5ba93319d81da028339755243fa405556a2b18d7.tar.gz";
|
||||||
|
sha256 = "0xiighffwyhis6ni815s6bqcrvhsr3s7c208sq3c4y5p2f1g397w";
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.modules.system.desktop.plasma = {
|
options.modules.system.desktop.plasma = {
|
||||||
|
@ -26,6 +30,17 @@ in
|
||||||
environment.systemPackages = with pkgs; with kdePackages; [
|
environment.systemPackages = with pkgs; with kdePackages; [
|
||||||
krfb # Use by kdeconnect for virtualmonitorplugin "krfb-virtualmonitor"
|
krfb # Use by kdeconnect for virtualmonitorplugin "krfb-virtualmonitor"
|
||||||
discover
|
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 ]))
|
||||||
|
###
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue