dot

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

default.nix (579B)


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