mirror of
https://github.com/tuxdotrs/tshell.git
synced 2026-03-22 03:06:32 +05:30
32 lines
648 B
Nix
32 lines
648 B
Nix
{
|
|
description = "tux's widgets for wayland";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
|
|
quickshell = {
|
|
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
quickshell,
|
|
}: let
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in {
|
|
devShells.${system} = {
|
|
default = pkgs.mkShell {
|
|
buildInputs = [
|
|
quickshell.packages.${system}.default
|
|
pkgs.kdePackages.qtdeclarative
|
|
pkgs.kdePackages.qt5compat
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|