Don't use pkgsUnstable unnecessarily
1 file changed, 3 insertions(+), 3 deletions(-)
changed files
M user/settings/user-interface.nix → user/settings/user-interface.nix
@@ -5,14 +5,14 @@ inherit (pkgs) stdenv; in { home.sessionVariables = { - TERMINAL = "${pkgs.unstable.xst}/bin/xst"; + TERMINAL = "${pkgs.xst}/bin/xst"; }; home.packages = with pkgs; [ firefox - unstable.xst # st, but with support for XResources + xst # st, but with support for XResources ] ++ lib.optionals (!stdenv.isDarwin) [ pkgs.sshfs - pkgs.unstable.mu + pkgs.mu ]; }