diff options
author | Julian T <julian@jtle.dk> | 2021-11-03 10:18:03 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-11-03 10:18:03 +0100 |
commit | 1a906f1cfd1db2e03f93a3f6102d66ddde4637ba (patch) | |
tree | 7210afcce93f0669ca678a4104ea99c388a33e44 | |
parent | ff7e5b69cac95845c40843f4b547329d887a5a74 (diff) |
More home-manager packages
-rw-r--r-- | nixhome/.config/nixpkgs/home.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/nixhome/.config/nixpkgs/home.nix b/nixhome/.config/nixpkgs/home.nix index f1dd5b4..7ab983a 100644 --- a/nixhome/.config/nixpkgs/home.nix +++ b/nixhome/.config/nixpkgs/home.nix @@ -6,7 +6,7 @@ in { # Yep makes sense programs.home-manager.enable = true; - home.packages = with pkgs; [ + home.packages = with unstable; [ stow pass gopass fzf # X stuff required by scripts @@ -16,7 +16,7 @@ in { # Developing gcc go clang-tools unstable.haskell-language-server - gdb php unstable.ghc stack racket chez rustc cargo + gdb php unstable.ghc stack racket chez rustc cargo rls # Email and calendar evolution gnome3.gnome-calendar evolution-data-server evolution-ews @@ -31,7 +31,7 @@ in { libreoffice-fresh liferea qutebrowser mate.caja audacity gnome3.eog veracrypt xournal remmina musescore fractal gnome3.gnome-disk-utility ipcalc playerctl - xarchive gtkwave gnome3.cheese pandoc filelight + xarchive gtkwave gnome3.cheese pandoc filelight zathura # Other stuff ( texlive.combine { inherit (texlive) @@ -39,7 +39,8 @@ in { multirow makecell ntheorem cleveref enumitem todonotes lastpage biblatex glossaries pgfplots csquotes soul mfirstuc xfor datatool mdframed zref needspace placeins - wrapfig tcolorbox environ listingsutf8 subfiles; + wrapfig tcolorbox environ listingsutf8 subfiles acmart totpages + hyperxmp ifmtarg ncctools comment libertine inconsolata newtx; }) biber @@ -49,6 +50,6 @@ in { ffmpeg fortune # The python env created in overlay - defaultPythonEnv + pkgs.defaultPythonEnv ]; } |