diff --git a/users/pbsds/home/profiles/desktop.nix b/users/pbsds/home/profiles/desktop.nix index 5182ed6..6a8b9b8 100644 --- a/users/pbsds/home/profiles/desktop.nix +++ b/users/pbsds/home/profiles/desktop.nix @@ -40,7 +40,7 @@ #nheko #fluffychat - (pkgs.zxtune or null) + (pkgs.zxtune or unstable.zxtune or null) f3d firefox diff --git a/users/pbsds/home/profiles/shell.nix b/users/pbsds/home/profiles/shell.nix index 013a196..87592b8 100644 --- a/users/pbsds/home/profiles/shell.nix +++ b/users/pbsds/home/profiles/shell.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, lib, ... }: { # TODO: "bind -s 'set completion-ignore-case on'" programs.bash.enable = true; @@ -82,7 +82,7 @@ home.shellAliases.chgrp = "chgrp --preserve-root"; - home.packages = with pkgs; [ + home.packages = lib.filter (x: x != null) (with pkgs; [ rsync bind.dnsutils # dig dogdns # dog @@ -106,6 +106,7 @@ fx yq # includes xmlq and tomlq fq # binary jq + (pkgs.jnv or unstable.jnv or null) htmlq just # justfile gum @@ -115,6 +116,6 @@ ncdu # Disk usage analyzer with an ncurses interface xplr # tui file explorer aha (pkgs.colorized-logs or unstable.colorized-logs) - ]; + ]); }