summary refs log tree commit diff stats
path: root/user/settings/base.nix
blob: cc83cb470560229ab9127af81b850175876c3a62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ config, pkgs, ... }:

{
  # Let Home Manager install and manage itself.
  programs.home-manager.enable = true;
  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 [
  ]);
}