2020-06-07 14:03:12 +00:00
|
|
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
{ pkgs, config, depot, lib, rebuilder, ... }@args:
|
2020-05-08 22:26:21 +00:00
|
|
|
let
|
2020-05-09 13:42:19 +00:00
|
|
|
inherit (lib) mkDefault;
|
2021-03-20 12:39:23 +00:00
|
|
|
|
|
|
|
switch-prebuilt = import ./switch-prebuilt.nix args;
|
2020-05-08 22:26:21 +00:00
|
|
|
in
|
|
|
|
{
|
2020-10-31 11:44:52 +00:00
|
|
|
imports = [ ../../../third_party/home-manager/nixos ];
|
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
options.my.home-manager.imports = lib.mkOption {
|
|
|
|
type = lib.types.listOf lib.types.path;
|
|
|
|
default = [ ./home-manager/common.nix ];
|
|
|
|
};
|
|
|
|
options.my.home-manager.system = lib.mkOption {
|
|
|
|
type = lib.types.nullOr lib.types.anything;
|
|
|
|
default = null;
|
2020-05-08 23:03:21 +00:00
|
|
|
};
|
2020-11-18 02:02:23 +00:00
|
|
|
options.my.prometheus.additionalExporterPorts = lib.mkOption {
|
|
|
|
type = lib.types.attrsOf lib.types.port;
|
|
|
|
default = {};
|
|
|
|
};
|
2020-05-08 22:26:21 +00:00
|
|
|
|
2020-11-01 18:25:01 +00:00
|
|
|
options.my.ip.tailscale = lib.mkOption {
|
|
|
|
type = lib.types.nullOr lib.types.string;
|
|
|
|
default = null;
|
|
|
|
};
|
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
config = {
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
2020-05-08 22:26:21 +00:00
|
|
|
|
2021-03-20 15:01:28 +00:00
|
|
|
networking.search = mkDefault [
|
|
|
|
"int.as205479.net"
|
|
|
|
"as205479.net"
|
|
|
|
];
|
2020-11-01 18:25:01 +00:00
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
nix = {
|
|
|
|
nixPath = [ "depot=/home/lukegb/depot/" "nixpkgs=/home/lukegb/depot/third_party/nixpkgs/" ];
|
2021-03-20 12:34:01 +00:00
|
|
|
trustedUsers = [ "root" "@wheel" "deployer" ];
|
2020-10-25 11:36:16 +00:00
|
|
|
binaryCaches = lib.mkForce [ "https://cache.nixos.org/" "s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1" ];
|
|
|
|
trustedBinaryCaches = lib.mkForce [ "https://cache.nixos.org/" "s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1" ];
|
|
|
|
envVars = {
|
|
|
|
AWS_ACCESS_KEY_ID = "${depot.ops.secrets.nixCache.AWS_ACCESS_KEY_ID}";
|
|
|
|
AWS_SECRET_ACCESS_KEY = "${depot.ops.secrets.nixCache.AWS_SECRET_ACCESS_KEY}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
nixpkgs.config = depot.third_party.nixpkgsConfig;
|
2020-05-08 22:26:21 +00:00
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
i18n.defaultLocale = "en_GB.UTF-8";
|
|
|
|
console.keyMap = "us";
|
2020-05-08 22:26:21 +00:00
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
time.timeZone = mkDefault "Etc/UTC";
|
|
|
|
|
2020-11-05 02:03:20 +00:00
|
|
|
zramSwap = {
|
|
|
|
enable = true;
|
|
|
|
memoryMax = 4 * 1024 * 1024 * 1024;
|
|
|
|
};
|
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
2020-11-17 02:21:46 +00:00
|
|
|
vim rxvt_unicode.terminfo tmux rebuilder tailscale rsync libarchive tcpdump restic
|
2021-03-20 12:11:45 +00:00
|
|
|
iftop htop jq
|
2020-10-25 11:36:16 +00:00
|
|
|
(mercurial.overridePythonAttrs (origAttrs: {
|
2020-11-25 13:12:36 +00:00
|
|
|
propagatedBuildInputs = [python3Packages.hg-evolve depot.nix.pkgs.hg-git];
|
2020-10-25 11:36:16 +00:00
|
|
|
}))
|
2021-03-20 12:39:23 +00:00
|
|
|
switch-prebuilt
|
2020-10-25 11:36:16 +00:00
|
|
|
];
|
2020-05-08 22:26:21 +00:00
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
networking.firewall = {
|
|
|
|
allowPing = true;
|
2020-05-08 22:26:21 +00:00
|
|
|
};
|
2020-10-25 11:36:16 +00:00
|
|
|
|
2020-10-25 12:00:15 +00:00
|
|
|
environment.homeBinInPath = true;
|
2020-11-05 01:50:16 +00:00
|
|
|
security.pam.enableSSHAgentAuth = true;
|
2020-10-25 12:00:15 +00:00
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
users.mutableUsers = false;
|
|
|
|
users.users = let secrets = depot.ops.secrets; in {
|
|
|
|
root.hashedPassword = secrets.passwordHashes.root;
|
|
|
|
lukegb = {
|
|
|
|
isNormalUser = true;
|
|
|
|
uid = 1000;
|
2020-12-03 03:00:40 +00:00
|
|
|
extraGroups = [ "wheel" "audio" ];
|
2020-10-25 11:36:16 +00:00
|
|
|
hashedPassword = secrets.passwordHashes.lukegb;
|
2020-11-01 14:42:52 +00:00
|
|
|
openssh.authorizedKeys.keyFiles = [
|
|
|
|
../../secrets/lukegb_totoro.pub
|
|
|
|
../../secrets/lukegb_termius.pub
|
|
|
|
../../secrets/lukegb_porcorosso_win.pub
|
|
|
|
../../secrets/lukegb_porcorosso_wsl.pub
|
2020-11-03 15:25:03 +00:00
|
|
|
../../secrets/lukegb_porcorosso_linux.pub
|
2020-11-05 01:50:16 +00:00
|
|
|
../../secrets/lukegb_red_solo.pub
|
2020-11-01 14:42:52 +00:00
|
|
|
];
|
2020-10-25 11:36:16 +00:00
|
|
|
};
|
|
|
|
deployer = {
|
|
|
|
isSystemUser = true;
|
|
|
|
uid = 1001;
|
|
|
|
hashedPassword = "!";
|
|
|
|
useDefaultShell = true;
|
|
|
|
home = "/var/lib/deployer";
|
|
|
|
createHome = true;
|
|
|
|
openssh.authorizedKeys.keyFiles = [
|
|
|
|
../../secrets/deployer_ed25519.pub
|
|
|
|
];
|
|
|
|
};
|
2020-05-09 00:10:20 +00:00
|
|
|
};
|
2020-10-25 11:36:16 +00:00
|
|
|
security.sudo.extraRules = [{
|
|
|
|
users = [ "deployer" ];
|
|
|
|
commands = [{
|
|
|
|
command = "${rebuilder}/bin/rebuilder";
|
|
|
|
options = [ "NOPASSWD" ];
|
2021-03-20 12:39:23 +00:00
|
|
|
} {
|
|
|
|
command = "${switch-prebuilt}/bin/switch-prebuilt";
|
|
|
|
options = [ "NOPASSWD" ];
|
2020-10-25 11:36:16 +00:00
|
|
|
}];
|
2020-05-09 00:10:20 +00:00
|
|
|
}];
|
2020-10-25 11:36:16 +00:00
|
|
|
security.sudo.extraConfig = ''
|
|
|
|
Defaults:deployer !requiretty
|
|
|
|
'';
|
2020-05-08 22:26:21 +00:00
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
programs.mtr.enable = true;
|
|
|
|
services.openssh.enable = true;
|
|
|
|
services.tailscale.enable = true;
|
2020-11-04 21:53:02 +00:00
|
|
|
networking.firewall.interfaces.tailscale0 = {
|
|
|
|
# Just allow anything in on tailscale0.
|
|
|
|
allowedTCPPortRanges = [{ from = 0; to = 65535; }];
|
|
|
|
allowedUDPPortRanges = [{ from = 0; to = 65535; }];
|
|
|
|
};
|
2020-05-08 22:26:21 +00:00
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
boot = {
|
|
|
|
kernelModules = [ "tcp_bbr" ];
|
|
|
|
kernel.sysctl."net.ipv4.tcp_congestion_control" = "bbr";
|
|
|
|
kernel.sysctl."net.core.default_qdisc" = "fq_codel";
|
|
|
|
};
|
2020-05-11 16:30:13 +00:00
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
# Clean up daily.
|
|
|
|
nix.gc = {
|
|
|
|
automatic = lib.mkDefault true;
|
|
|
|
dates = "*-*-* 05:00:00";
|
2021-03-19 21:29:54 +00:00
|
|
|
options = "--delete-older-than 7d";
|
2020-10-25 11:36:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
home-manager.useUserPackages = true;
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
|
|
|
|
|
|
systemd.services."home-manager-lukegb" = {
|
|
|
|
before = [ "display-manager.service" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
};
|
2020-10-18 01:17:35 +00:00
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
home-manager.users.lukegb = { pkgs, ... }: ({
|
|
|
|
imports = [ ({
|
2020-11-23 16:47:17 +00:00
|
|
|
_module.args = args // {
|
|
|
|
configName = null;
|
|
|
|
};
|
2020-10-25 11:36:16 +00:00
|
|
|
})] ++ config.my.home-manager.imports ++ (
|
|
|
|
lib.optional (config.my.home-manager.system != null) config.my.home-manager.system
|
|
|
|
);
|
|
|
|
});
|
2020-11-06 04:52:54 +00:00
|
|
|
|
2021-01-07 10:01:36 +00:00
|
|
|
services.prometheus.exporters.node = {
|
|
|
|
enable = true;
|
2021-01-11 17:44:23 +00:00
|
|
|
enabledCollectors = [ "systemd" "textfile" ];
|
|
|
|
extraFlags = [
|
|
|
|
"--collector.textfile.directory=/run/prometheus-textfile-exports"
|
|
|
|
];
|
2021-01-07 10:01:36 +00:00
|
|
|
};
|
2021-01-11 17:44:23 +00:00
|
|
|
system.activationScripts.node-exporter = {
|
|
|
|
text = ''
|
|
|
|
test -d /run/prometheus-textfile-exports || mkdir /run/prometheus-textfile-exports
|
|
|
|
my_version_string="$(cat "$systemConfig/nixos-version")"
|
|
|
|
echo "nixos_running_system{version=\"$my_version_string\"} 1" > /run/prometheus-textfile-exports/running_system.prom
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
boot.postBootCommands = lib.mkAfter ''
|
|
|
|
test -d /run/prometheus-textfile-exports || mkdir /run/prometheus-textfile-exports
|
|
|
|
my_version_string="$(cat "/run/booted-system/nixos-version")"
|
|
|
|
echo "nixos_booted_system{version=\"$my_version_string\"} 1" > /run/prometheus-textfile-exports/booted_system.prom
|
|
|
|
'';
|
|
|
|
|
|
|
|
system.nixos.tags = lib.mkBefore [
|
|
|
|
depot.version
|
|
|
|
];
|
2021-01-19 23:41:47 +00:00
|
|
|
|
|
|
|
services.nginx = {
|
|
|
|
recommendedTlsSettings = true;
|
|
|
|
recommendedOptimisation = true;
|
|
|
|
recommendedGzipSettings = true;
|
|
|
|
recommendedProxySettings = true;
|
|
|
|
};
|
2021-01-30 18:47:12 +00:00
|
|
|
|
|
|
|
services.fwupd.enable = true;
|
2020-10-18 01:17:35 +00:00
|
|
|
};
|
2020-07-08 18:36:21 +00:00
|
|
|
}
|