diff options
Diffstat (limited to 'user')
-rw-r--r-- | user/modules/base.nix | 22 | ||||
-rw-r--r-- | user/modules/user-interface.nix | 16 |
2 files changed, 38 insertions, 0 deletions
diff --git a/user/modules/base.nix b/user/modules/base.nix index 46645d94..cc83cb47 100644 --- a/user/modules/base.nix +++ b/user/modules/base.nix @@ -6,4 +6,26 @@ manual = { html.enable = true; }; + home.packages = with pkgs; [ + pv + fd + unstable.sd + entr + file + htop + lsof + iftop + nmap + moreutils + mtr + tree + zip + telnet + ] ++ ( + if !stdenv.isDarwin + then [ + vim + unar + ] else [ + ]); } diff --git a/user/modules/user-interface.nix b/user/modules/user-interface.nix new file mode 100644 index 00000000..835cb7b7 --- /dev/null +++ b/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 + ]; +} |