All my system configs and packages in one repo
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

plasma: add force blur plugin

+14 -3
+9 -1
flake.nix
··· 57 57 inputs.nixpkgs.follows = "nixpkgs"; 58 58 }; 59 59 60 + kwin-effects-forceblur = { 61 + url = "github:taj-ny/kwin-effects-forceblur"; 62 + inputs = { 63 + nixpkgs.follows = "nixpkgs"; 64 + utils.follows = "flake-utils"; 65 + }; 66 + }; 67 + 60 68 lanzaboote = { 61 69 url = "github:nix-community/lanzaboote"; 62 70 inputs = { ··· 83 91 nixos-hardware.url = "github:NixOS/nixos-hardware/master"; 84 92 85 93 plasma-manager = { 86 - url = "github:pjones/plasma-manager"; 94 + url = "github:nix-community/plasma-manager"; 87 95 inputs = { 88 96 home-manager.follows = "home-manager"; 89 97 nixpkgs.follows = "nixpkgs";
+5 -2
users/leah/presets/plasma/default.nix
··· 1 - { pkgs, ... }: 1 + { pkgs, inputs', ... }: 2 2 { 3 3 imports = [ 4 4 ./sddm.nix ··· 14 14 # KDE manages GTK stuff by itself 15 15 #hm.gtk.enable = lib.mkForce false; 16 16 17 - hm.home.packages = with pkgs; [ wl-clipboard ]; 17 + hm.home.packages = with pkgs; [ 18 + wl-clipboard 19 + inputs'.kwin-effects-forceblur.packages.default 20 + ]; 18 21 }