blob: 758664f657db212453491071eec615d8a34c1242 (
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, ... }:
{
imports = [ ./auto-upgrade.nix ];
programs.fish.enable = true;
programs.tmux.enable = true;
environment.shellAliases = {
vim = "nvim";
};
environment.systemPackages = with pkgs; [
dnsutils
git
gnupg
haskellPackages.hledger
htop
mosh
neovim
nix-repl
# nox # Broken as of 2017-06-12
pass
silver-searcher
whois
];
time.timeZone = "America/New_York";
system.stateVersion = "17.04";
services = {
postgresql = {
dataDir = "/var/db/postgresql";
package = pkgs.postgresql95;
};
openssh.passwordAuthentication = false;
};
nix = rec {
useSandbox = lib.mkDefault true;
maxJobs = lib.mkOverride 110 16;
buildCores = lib.mkDefault 0; # auto configure
gc.automatic = lib.mkDefault true;
nixPath = lib.mkBefore [
"orbekk=https://hydra.orbekk.com/project/orbekk-projects/channel/latest/nixexprs.tar.bz2"
"nixpkgs-stable=https://nixos.org/channels/nixos-17.03/nixexprs.tar.xz"
"nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos/nixpkgs"
"nixos-config=/etc/nixos/configuration.nix"
"/nix/var/nix/profiles/per-user/root/channels"
];
trustedBinaryCaches = [
"https://hydra.orbekk.com" "https://cache.nixos.org"
];
binaryCaches = trustedBinaryCaches;
binaryCachePublicKeys = [ "hydra.orbekk.com-1:aAKJuVqMptWoFfY9fhUADdXw5LM5IfSGjTSobuxg+Bo=" ];
};
boot.cleanTmpDir = true;
}
|