summaryrefslogtreecommitdiff
path: root/config/common.nix
blob: 238ec41d67916c88989d941d4fcfda205c9c306a (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{ config, lib, pkgs, ... }:

# let
  # myNixpkgs = import (pkgs.fetchFromGitHub {
    # owner = "orbekk";
    # repo = "nixpkgs";
    # rev = "7e4a06c17db1b479e69d2a4f90eede19b1d858cd";
    # sha256 = "06043m672q4ibbsa9pkdzzf0d3c59l4wx5xgfbp29fnf7fy5kifw";
  # }) {};
# in
{
  programs.fish.enable = true;
  programs.tmux.enable = true;

  # nixpkgs.config.packageOverrides = pkgs: {
  #   luaPackages = myNixpkgs.luaPackages;
  # };

  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;
  boot.specialFileSystems = lib.optionalAttrs (config.boot.isContainer) {
    "/dev/pts" = {
      options = lib.mkAfter [ "ptmxmode=666" ];
    };
  };
}