mirror of
https://github.com/vinceliuice/Colloid-gtk-theme.git
synced 2026-09-08 17:23:05 -07:00
21 lines
360 B
Nix
21 lines
360 B
Nix
{
|
|
description = "Modern and clean Gtk theme";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, nixpkgs }:
|
|
let
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
};
|
|
|
|
in {
|
|
packages.${system}.default =
|
|
pkgs.callPackage ./nix/default.nix {};
|
|
};
|
|
}
|