1
0
Fork 0
dotfiles/system/hosts/sail.nix

98 lines
2.1 KiB
Nix
Raw Normal View History

2022-08-09 17:14:56 +00:00
args@{ pkgs, lib, ... }:
2022-07-30 16:19:49 +00:00
2022-07-30 20:55:19 +00:00
let
2022-08-09 17:14:22 +00:00
inherit (lib) optionals;
2022-07-30 20:55:19 +00:00
secret = import ../../secret/hosts/sail.nix;
2022-07-31 18:33:19 +00:00
ssh-keys = import ../shared/ssh-keys.nix;
2022-07-30 20:55:19 +00:00
in
2022-07-30 16:19:49 +00:00
{
imports = [
../../hardware/hosts/sail.nix
2022-07-30 17:49:04 +00:00
../nixos/ssh.nix
../nixos/git.nix
2022-07-31 13:10:28 +00:00
(import ../nixos/tailscale.nix (args // { inherit secret; }))
2022-07-30 18:17:39 +00:00
../nixos/arion.nix
2022-07-30 22:36:06 +00:00
../../container/webserver
2022-07-30 16:19:49 +00:00
];
nix = {
package = pkgs.nixFlakes;
2022-08-05 09:37:45 +00:00
settings = {
auto-optimise-store = true;
2022-07-30 16:19:49 +00:00
2022-08-05 09:37:45 +00:00
substituters = [
"https://nix-community.cachix.org"
2022-08-06 09:17:13 +00:00
"https://nifoc.cachix.org"
2022-08-09 17:14:22 +00:00
] ++ optionals secret.nix-cache.nifoc.enabled [
secret.nix-cache.nifoc.s3Url
2022-08-05 09:37:45 +00:00
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
2022-08-06 09:17:13 +00:00
"nifoc.cachix.org-1:ymuftq7RgN/lf/iWXFK8gpwDSAGFaGBeliWe9u6q8II="
2022-08-09 17:14:22 +00:00
] ++ optionals secret.nix-cache.nifoc.enabled [
secret.nix-cache.nifoc.publicKeyValue
2022-08-05 09:37:45 +00:00
];
};
2022-07-30 16:19:49 +00:00
2022-08-18 21:12:16 +00:00
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
2022-07-30 16:19:49 +00:00
extraOptions = ''
experimental-features = nix-command flakes
2022-08-07 15:54:05 +00:00
extra-platforms = aarch64-linux
2022-07-30 16:19:49 +00:00
keep-derivations = true
keep-outputs = true
'';
};
2022-08-07 15:54:05 +00:00
boot = {
cleanTmpDir = true;
binfmt.emulatedSystems = [ "aarch64-linux" ];
};
2022-07-30 16:19:49 +00:00
zramSwap.enable = true;
2022-07-30 20:55:19 +00:00
networking = {
hostName = "sail";
interfaces.enp1s0.ipv6.addresses = secret.networking.interfaces.enp1s0.ipv6.addresses;
defaultGateway6 = { address = "fe80::1"; interface = "enp1s0"; };
2022-07-31 13:10:28 +00:00
2022-07-31 13:21:51 +00:00
dhcpcd.denyInterfaces = [ "veth*" ];
2022-07-31 13:10:28 +00:00
timeServers = [
"ntp1.hetzner.de"
"ntp2.hetzner.com"
"ntp3.hetzner.net"
"time.cloudflare.com"
];
2022-07-30 20:55:19 +00:00
};
2022-07-30 16:19:49 +00:00
2022-08-01 10:24:30 +00:00
programs.fish.enable = true;
2022-07-31 18:33:19 +00:00
users.users = {
root = {
openssh.authorizedKeys.keys = [ ssh-keys.Hetzner ];
};
daniel = {
hashedPassword = secret.users.daniel.hashedPassword;
isNormalUser = true;
home = "/home/daniel";
description = "Daniel";
extraGroups = [ "wheel" ];
2022-08-01 10:24:30 +00:00
shell = pkgs.fish;
2022-07-31 18:33:19 +00:00
openssh.authorizedKeys.keys = [ ssh-keys.Hetzner ];
};
};
2022-07-30 16:19:49 +00:00
}