summaryrefslogtreecommitdiff
path: root/hosts/cloud/span/packages.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/cloud/span/packages.nix')
-rw-r--r--hosts/cloud/span/packages.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/hosts/cloud/span/packages.nix b/hosts/cloud/span/packages.nix
deleted file mode 100644
index 6574071..0000000
--- a/hosts/cloud/span/packages.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ config, pkgs, ... }:
-
-{
- nixpkgs.config = {
- allowUnfree = true;
- };
-
- environment.systemPackages = with pkgs; [
- vim
- helix
- fish
- # unix utilities
- tmux
- bat # cat replacement written in Rust
- colordiff
- direnv # Per-directory environment variables
- lsd
- fd # find replacement written in Rust
- fzf # Fuzzy finder
- git
- htop # Resource monitoring
- jq # JSON parsing for the CLI
- lsof
- ripgrep # grep replacement written in Rust
- sd # Fancy sed replacement
- silver-searcher
- strace # debug stack trace
- tealdeer # tldr for various shell tools
- testdisk
- tokei # Handy tool to see lines of code by language
- watchexec # Fileystem watcher/executor useful for speedy development
- xsv # CSV file parsing utility
- just # Intriguing new make replacement
- mdcat # Markdown converter/reader for the CLI
- tree
- unzip
- zip
-
- # networking
- curl
- wget
-
- minio
- ncdu
- ];
-}
-