Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

2.8 KiB

Nix Configuration

Nix user config.nix setup.

  {
    packageOverrides = pkgs: with pkgs;
    let in rec {
      custom-pinentry = pinentry.override { gtk2 = null; qt4 = null; ncurses = null; };
      custom-youtube-dl = python27Packages.youtube-dl.override { pandoc = null; };

      default = buildEnv {
        name = "default";
        ignoreCollisions = true;
        paths = [
          ack
          aria
          aspell
          aspellDicts.en
          bazaarTools
          cacert
          clang
          clang-analyzer
          cloc
          cscope
          ctags
          curl
          custom-pinentry
          custom-youtube-dl
          diffutils
          docbook5
          duply
          emacs
          entr
          gcc
          gdbm
          ghostscript
          gist
          gitAndTools.git-extras
          gitAndTools.gitFull
          gmp
          gnumake
          gnupg
          gnupg1compat
          gnutar
          graphviz-nox
          haskellPackages.ShellCheck
          haskellPackages.cabal-dependency-licenses
          haskellPackages.ghc-mod
          haskellPackages.hasktags
          haskellPackages.hindent
          haskellPackages.hoogle
          haskellPackages.hspec
          haskellPackages.idris
          haskellPackages.intero
          haskellPackages.pandoc
          haskellPackages.stack
          htop
          imagemagick
          iperf
          jq
          keychain
          lastpass-cli
          less
          llvm
          mercurial
          moreutils
          mosh
          mr
          multimarkdown
          multitail
          munge
          mutt
          nox
          openssl
          p7zip
          patchutils
          pbzip2
          pigz
          pixz
          pkgconfig
          pv
          python27Packages.flake8
          python27Packages.howdoi
          python27Packages.pip
          python27Packages.pyflakes
          python27Packages.pylint
          python27Packages.virtualenv
          rlwrap
          rsync
          rtags
          silver-searcher
          sloccount
          sqlite
          sshpass
          texlive.combined.scheme-full
          tmux
          tree
          unzip
          upx
          wakelan
          watch
          wget
          xz
  # If I ever come up with some linux only stuff or figure out xhyve
  #      ] ++ stdenv.lib.optionals stdenv.isLinux [
  #      ] ++ stdenv.lib.optionals stdenv.isDarwin [
  #        xhyve
        ];
      };
    };
    allowUnfree = true;
  }