summary refs log tree commit diff stats
path: root/user/settings/user-interface.nix
blob: eb765e2d7998fbd89658730d6e78e01cc27be722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, pkgs, ... }:

let
  inherit (pkgs) stdenv;
in
{
  home.sessionVariables = {
    TERMINAL = "xterm";
  };

  home.packages = with pkgs; [
    firefox
  ] ++ lib.optionals (!stdenv.isDarwin) [
    pkgs.sshfs
    pkgs.mu
  ];
}