aerothemeplasma/kwin/effects_cpp/kde-effects-forceblur/flake.nix

19 lines
515 B
Nix
Raw Normal View History

2024-08-09 01:20:25 +00:00
{
description = "A fork of the KWin Blur effect for KDE Plasma 6 with the ability to blur any window on Wayland and X11";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, ... }@inputs: inputs.utils.lib.eachSystem [
"x86_64-linux" "aarch64-linux"
] (system: let
pkgs = import nixpkgs {
inherit system;
};
in {
packages.default = pkgs.kdePackages.callPackage ./package.nix { };
});
}