feat: replace port with nix
parent
30a3e37044
commit
e8f5574412
|
@ -2,17 +2,12 @@
|
|||
|
||||
rustup update
|
||||
|
||||
# https://stackoverflow.com/q/57734434
|
||||
sudo port deactivate libiconv
|
||||
|
||||
cargo install \
|
||||
fd-find bat ripgrep git-delta exa tealdeer \
|
||||
difftastic vivid \
|
||||
fnm stylua taplo-cli \
|
||||
pfetch pokeget
|
||||
|
||||
sudo port activate libiconv
|
||||
|
||||
bat cache --build
|
||||
|
||||
pokeget --hide-name pikachu >data/pokeget/pikachu.txt
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
port install \
|
||||
libgit2 \
|
||||
git neovim \
|
||||
fdupes rsync rclone restic task \
|
||||
nnn ffmpegthumbnailer asciinema agg android-platform-tools scrcpy libjxl yt-dlp \
|
||||
pipx plantuml
|
|
@ -1,8 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
port selfupdate
|
||||
port reclaim
|
||||
port outdated
|
||||
port upgrade outdated
|
||||
port reclaim
|
||||
port diagnose --quiet
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# https://nixos.org/manual/nix/stable/package-management/basic-package-mgmt
|
||||
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
|
||||
nix-channel --list
|
||||
nix-channel --update
|
||||
|
||||
nix-env -iA \
|
||||
nixpkgs.git nixpkgs.neovim \
|
||||
nixpkgs.fdupes nixpkgs.rsync nixpkgs.rclone nixpkgs.restic nixpkgs.taskwarrior \
|
||||
nixpkgs.nnn nixpkgs.ffmpegthumbnailer nixpkgs.asciinema-agg nixpkgs.yt-dlp nixpkgs.libjxl \
|
||||
nixpkgs.pipx nixpkgs.plantuml
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
nix-channel --update
|
||||
|
||||
nix-env -uA \
|
||||
nixpkgs.git nixpkgs.neovim \
|
||||
nixpkgs.fdupes nixpkgs.rsync nixpkgs.rclone nixpkgs.restic nixpkgs.taskwarrior \
|
||||
nixpkgs.nnn nixpkgs.ffmpegthumbnailer nixpkgs.asciinema-agg nixpkgs.yt-dlp nixpkgs.libjxl \
|
||||
nixpkgs.pipx nixpkgs.plantuml
|
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
pipx install asciinema
|
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
pipx upgrade asciinema
|
Loading…
Reference in New Issue