diff options
author | Silas Schöffel <sils@sils.li> | 2024-04-21 17:37:58 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-04-22 17:02:26 +0200 |
commit | 373aee2e8b55fb931527fd3efe0ba59ec21c2ad2 (patch) | |
tree | b2c23f13d4ff4864e450caaa814026b5f4af606d /hm | |
parent | hm: consume mail module (diff) | |
download | nix-config-373aee2e8b55fb931527fd3efe0ba59ec21c2ad2.tar.gz nix-config-373aee2e8b55fb931527fd3efe0ba59ec21c2ad2.zip |
packages: pin calibre to working version
Diffstat (limited to 'hm')
-rw-r--r-- | hm/packages/default.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/hm/packages/default.nix b/hm/packages/default.nix index 2a0b75a..a3e3071 100644 --- a/hm/packages/default.nix +++ b/hm/packages/default.nix @@ -1,10 +1,12 @@ { - system, + nixpkgs-pinned, pkgs, prismlauncher, wl-togglescreens, ... -}: { +}: let + pkgs-pinned = nixpkgs-pinned.legacyPackages.${pkgs.system}; +in { home.packages = with pkgs; with pkgs.libsForQt5; with pkgs.gnome; [ @@ -61,7 +63,7 @@ texlive.combined.scheme-full # LaTeX texlab # latex language server - calibre # ebook management + pkgs-pinned.calibre # ebook management html-tidy # html formatter ltex-ls # lsp language server for languagetool |