dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

default.nix (461B)


      1 { pkgs, ... }:
      2 {
      3   environment = {
      4     shellAliases = {
      5       lsusb = "cyme";
      6     };
      7 
      8     systemPackages = with pkgs; [
      9       bat
     10       cyme
     11       d2
     12       ddrescue
     13       dig
     14       exiftool
     15       file
     16       google-cloud-sdk
     17       inetutils
     18       jq
     19       lm_sensors
     20       nmap
     21       p7zip
     22       riffdiff
     23       scc
     24       sc-im
     25       sqlite
     26       tree
     27       unzip
     28       vulkan-tools
     29       wdiff
     30       xxd
     31       yq-go
     32       yt-dlp
     33       zip
     34       zx
     35     ];
     36   };
     37 }