17 lines
360 B
Nix
17 lines
360 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
|
|
quickshell = {
|
|
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, quickshell }: {
|
|
quickshell-docs = import ./package.nix {
|
|
inherit pkgs;
|
|
srcpath = "${quickshell}/src";
|
|
};
|
|
};
|
|
}
|