Move shell and UI packages to user
1 file changed, 16 insertions(+), 0 deletions(-)
changed files
A user/modules/user-interface.nix
@@ -0,0 +1,16 @@ +{ config, pkgs, ... }: + +let + inherit (pkgs) stdenv; +in +{ + home.sessionVariables = { + TERMINAL = "${pkgs.unstable.xst}/bin/xst"; + }; + + home.packages = with pkgs; [ + unstable.xst # st, but with support for XResources + ] ++ lib.optionals (!stdenv.isDarwin) [ + pkgs.unstable.mu + ]; +}