all repos — nixfiles @ 09e879cfa15b856a1a26820fcb646edc4adcda88

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

Move shell and UI packages to user

Alan Pearce
commit

09e879cfa15b856a1a26820fcb646edc4adcda88

parent

a64e999255638c9a0ae5b7c104d80ac3201b1bc5

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 + ]; +}