Skip to content

Commit

Permalink
feat: Add option to install Fleek when installing Nix
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Aug 31, 2023
1 parent 3f11891 commit 217a432
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ screens:
default: false
packages:
- Install Nix Package Support: sudo -A just --unstable install-nix
- Install Fleek: sudo -A just --unstable install-fleek
SteamCMD:
description: Installs SteamCMD
default: true
Expand Down
6 changes: 6 additions & 0 deletions system_files/deck/shared/usr/share/ublue-os/just/custom.just
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ install-nix:
remove-nix:
sudo /nix/nix-installer uninstall

install-fleek:
#!/usr/bin/env bash
mkdir -p $HOME/.config/nix
echo "experimental-features = nix-command flakes" >> $HOME/.config/nix/nix.conf
curl -fsSL https://getfleek.dev/installer | sudo env FORCE=1 bash
get-greenlight:
echo 'Retrieving Greenlight'
wget https://github.com/unknownskl/greenlight/releases/download/v2.0.0-beta8/Greenlight-2.0.0-beta8.AppImage -O ~/Desktop/Greenlight.AppImage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ screens:
default: false
packages:
- Install Nix Package Support: sudo -A just --unstable install-nix
- Install Fleek: sudo -A just --unstable install-fleek
amd-additions:
source: yafti.screen.package
values:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ install-nix:
remove-nix:
sudo /nix/nix-installer uninstall

install-fleek:
#!/usr/bin/env bash
mkdir -p $HOME/.config/nix
echo "experimental-features = nix-command flakes" >> $HOME/.config/nix/nix.conf
curl -fsSL https://getfleek.dev/installer | sudo env FORCE=1 bash
enable-auto-login:
#!/usr/bin/env bash
source /etc/default/bazzite
Expand Down

0 comments on commit 217a432

Please sign in to comment.