Compare commits

..

No commits in common. "27d84c8a82ffb6d94c26c066f3d193eca5357a85" and "fd9cd4f3fd7d4b1236854ef97728dc5379cfd432" have entirely different histories.

3 changed files with 3 additions and 17 deletions

View file

@ -7,7 +7,6 @@
nodejs,
cacert,
quickshell-types ? null,
masterBranch ? false,
}: stdenv.mkDerivation (final: let
nodeModules = stdenv.mkDerivation {
pname = "${final.pname}-node_modules";
@ -70,7 +69,6 @@ in {
'';
PRODUCTION = true;
MASTER_BRANCH = masterBranch;
SECRET_MODULES_PATH = if quickshell-types == null then "" else quickshell-types;
buildPhase = ''

View file

@ -57,18 +57,8 @@ const types = {
})
),
};
const masterBranch = import.meta.env.MASTER_BRANCH;
---
<nav class="navtree">
{masterBranch && <Link
title="Docs Version: Master Branch (Switch)"
link=`https://quickshell.outfoxxed.me${Astro.url.pathname}`
/>}
{!masterBranch && <Link
title="Docs Version: Release 0.1.0 (Switch)"
link=`https://quickshell-master.outfoxxed.me${Astro.url.pathname}`
/>}
<Link
title="About Quickshell"
link="/docs/about"

View file

@ -11,9 +11,7 @@ index: 0
All packages currently track quickshell's master branch. This may change in the future.
### Nix
Quickshell releases are packaged in nixpkgs as `quickshell`.
The Quickshell repo also has an embedded flake.
The Quickshell repo has an embedded flake.
You can use either `git+https://git.outfoxxed.me/outfoxxed/quickshell`
or `github:quickshell-mirror/quickshell`. Use `?ref=` to specify a tag
if you want a tagged release.
@ -24,8 +22,8 @@ if you want a tagged release.
nixpkgs.url = "nixpkgs/nixos-unstable";
quickshell = {
# add ?ref=<tag> to track a tag
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
# remove ?ref=v0.1.0 to track the master branch
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell?ref=v0.1.0";
# THIS IS IMPORTANT
# Mismatched system dependencies will lead to crashes and other issues.