We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 924bead commit c4e0c99Copy full SHA for c4e0c99
system_files/desktop/shared/usr/share/ublue-os/just/custom.just
@@ -54,9 +54,13 @@ remove-nix:
54
55
install-fleek:
56
#!/usr/bin/env bash
57
- mkdir -p $HOME/.config/nix
58
- echo "experimental-features = nix-command flakes" >> $HOME/.config/nix/nix.conf
59
- curl -fsSL https://getfleek.dev/installer | env FORCE=1 bash
+ if [[ -d "/nix" ]]; then
+ mkdir -p $HOME/.config/nix
+ echo "experimental-features = nix-command flakes" >> $HOME/.config/nix/nix.conf
60
+ curl -fsSL https://getfleek.dev/installer | env FORCE=1 bash
61
+ else
62
+ echo "Install nix with just install-nix before running just install-fleek."
63
+ fi
64
65
fleek-install-themes:
66
0 commit comments