nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

packages.nix (241B)


      1 { pkgs, ... }: {
      2   nixpkgs.config.allowUnfree = true;
      3   environment.systemPackages = with pkgs; [
      4     fastfetch
      5     ffmpeg
      6     file
      7     fish
      8     git
      9     htop
     10     jdupes
     11     neovim
     12     rclone
     13     rsync
     14     syncthing
     15     tmux
     16     unzip
     17   ];
     18 }