You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
402 B
Nix
19 lines
402 B
Nix
11 months ago
|
{
|
||
|
description = "Latte Dock flake";
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||
|
};
|
||
|
|
||
|
outputs = { self, nixpkgs }:
|
||
|
let system = "x86_64-linux";
|
||
|
pkgs = import nixpkgs { inherit system; };
|
||
|
latte = import ./default.nix { inherit pkgs; };
|
||
|
in {
|
||
|
|
||
|
packages."${system}".latte-dock = latte;
|
||
|
devShells."${system}".default = latte;
|
||
|
|
||
|
};
|
||
|
}
|