diff options
author | polwex <polwex@sortug.com> | 2025-07-27 03:34:16 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-07-27 03:34:16 +0700 |
commit | 2339fba37290774336fa517a417330e3ff788ba5 (patch) | |
tree | d4bf9d531538af6d0e4718e75ee38a350ade671f /hosts/cloud/span/packages.nix | |
parent | 7c959ef5c9c689c06aa5fe48110cdf6d780a438c (diff) |
spanch
Diffstat (limited to 'hosts/cloud/span/packages.nix')
-rw-r--r-- | hosts/cloud/span/packages.nix | 47 |
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 - ]; -} - |