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

152 lines
3.3 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
2023-02-05 16:51:04 +00:00
../../agenix/hosts/sail/config.nix
2022-07-30 17:49:04 +00:00
../nixos/ssh.nix
../nixos/git.nix
2022-11-29 14:17:23 +00:00
2023-02-06 10:47:54 +00:00
../nixos/cloudflared.nix
2022-12-26 16:55:17 +00:00
2023-03-05 22:02:49 +00:00
../nixos/acme-sail.nix
2023-03-05 22:51:30 +00:00
../nixos/nginx.nix
2023-03-05 22:02:49 +00:00
2023-02-27 16:53:15 +00:00
../nixos/atuin-sync.nix
2023-02-27 16:51:39 +00:00
../nixos/anonymous-overflow.nix
2023-02-15 19:35:46 +00:00
2023-01-24 13:33:54 +00:00
(import ../nixos/freshrss.nix (args // { inherit secret; }))
2023-03-05 22:51:30 +00:00
(import ../nixos/libreddit.nix (args // { inherit secret; }))
2023-02-12 21:13:30 +00:00
2022-11-29 14:17:23 +00:00
(import ../nixos/mastodon.nix (args // { inherit secret; }))
2023-02-13 18:44:04 +00:00
../nixos/nitter.nix
2023-02-18 19:54:15 +00:00
(import ../nixos/ntfy-sh.nix (args // { inherit secret; }))
2023-03-05 18:22:15 +00:00
../nixos/rimgo.nix
2023-02-05 22:25:57 +00:00
../nixos/synapse.nix
2022-11-29 14:17:23 +00:00
2022-12-01 14:51:08 +00:00
../nixos/websites.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-11-27 18:53:13 +00:00
../../container/matrix
2023-02-28 13:55:57 +00:00
../../container/proxitok
2022-07-30 16:19:49 +00:00
];
2022-12-25 21:13:07 +00:00
system.stateVersion = "22.11";
2022-07-30 16:19:49 +00:00
nix = {
2022-09-26 13:23:14 +00:00
package = pkgs.nixVersions.stable;
2022-07-30 16:19:49 +00:00
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"
"https://wurzelpfropf.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="
"wurzelpfropf.cachix.org-1:ilZwK5a6wJqVr7Fyrzp4blIEkGK+LJT0QrpWr1qBNq0="
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";
2023-02-03 22:36:20 +00:00
interfaces = {
enp1s0.ipv6.addresses = secret.networking.interfaces.enp1s0.ipv6.addresses;
enp7s0.ipv4 = {
addresses = [{ address = "10.99.99.2"; prefixLength = 32; }];
routes = [
{ address = "10.99.99.1"; prefixLength = 32; }
2023-02-03 22:58:17 +00:00
{ address = "10.99.99.0"; prefixLength = 24; via = "10.99.99.1"; }
];
};
2023-02-03 22:36:20 +00:00
};
2022-07-30 20:55:19 +00:00
defaultGateway6 = { address = "fe80::1"; interface = "enp1s0"; };
2022-07-31 13:10:28 +00:00
dhcpcd.denyInterfaces = [ "enp7s0" "veth*" ];
2022-07-31 13:21:51 +00:00
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-12-01 21:48:43 +00:00
services.journald.extraConfig = ''
SystemMaxUse=1G
'';
2023-02-23 20:41:41 +00:00
documentation = {
nixos.enable = false;
doc.enable = false;
};
2022-10-24 11:19:23 +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 = {
2022-12-01 21:48:43 +00:00
inherit (secret.users.daniel) hashedPassword;
2022-07-31 18:33:19 +00:00
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
}