mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
18 lines
515 B
Nix
Executable file
18 lines
515 B
Nix
Executable file
{
|
|
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 { };
|
|
});
|
|
}
|