config

NixOS config
Log | Files | Refs | README | LICENSE

default.nix (235B) - Raw


      1 { pkgs, ... }:
      2 {
      3   environment.systemPackages = with pkgs; [
      4     scrcpy
      5     yt-dlp
      6     ffmpeg
      7     pandoc
      8     imagemagick
      9     poppler-utils
     10     magic-wormhole
     11     age-plugin-yubikey
     12     (if stdenv.isDarwin then vlc-bin else vlc)
     13   ];
     14 }