all repos — nixfiles @ 42ae19e4dfc9cca93fa7030a98939de3528457c2

System and user configuration, managed by nix and home-manager

Don't use pkgsUnstable unnecessarily

Alan Pearce
commit

42ae19e4dfc9cca93fa7030a98939de3528457c2

parent

05ccf28d742b0b12360e833ecf3254ecd7c60b94

1 file changed, 3 insertions(+), 3 deletions(-)

changed files
M user/settings/user-interface.nixuser/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 ]; }