summaryrefslogtreecommitdiff
path: root/config/common.nix
blob: 54074087b9368dcfc5c0ee282291da9ab9ef5145 (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
32
33
34
35
36
{ config, lib, pkgs, ... }:
{
  programs.fish.enable = true;

  environment.shellAliases = {
    vim = "nvim";
  };
  environment.systemPackages = with pkgs; [
    dnsutils
    git
    gnupg
    haskellPackages.hledger
    htop
    mosh
    neovim
    nix-repl
    nox
    pass
    silver-searcher
    whois
  ];
  time.timeZone = "America/New_York";

  services = {
    openssh.passwordAuthentication = false;
  };

  nix = {
    useSandbox = lib.mkDefault true;
    maxJobs = lib.mkOverride 110 16;
    buildCores = lib.mkDefault 0;  # auto configure
    gc.automatic = lib.mkDefault true;
  };

  boot.cleanTmpDir = true;
}