2023-12-29 14:42:11 -07:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page, on
|
|
|
|
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
|
|
|
|
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ # Include the results of the hardware scan.
|
2023-12-29 22:10:20 -07:00
|
|
|
|
./hardware/samsehu.nix
|
2023-12-29 14:42:11 -07:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# Use the `systemd-boot` boot loader
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
2024-01-06 14:41:24 -07:00
|
|
|
|
|
|
|
|
|
# Added following instructions of openzfs configuration
|
|
|
|
|
# randomly generated with `head -c4 /dev/urandom | od -A none -t x4`
|
|
|
|
|
networking.hostId = "3e52e44f";
|
|
|
|
|
boot.supportedFilesystems = [ "zfs" ];
|
|
|
|
|
boot.zfs.forceImportRoot = false;
|
|
|
|
|
|
2023-12-29 14:42:11 -07:00
|
|
|
|
networking.hostName = "samsehu"; # Define your hostname.
|
|
|
|
|
|
|
|
|
|
# Pick only one of the below networking options.
|
|
|
|
|
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
|
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "America/Denver";
|
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
# console = {
|
|
|
|
|
# font = "Lat2-Terminus16";
|
|
|
|
|
# keyMap = "us";
|
|
|
|
|
# useXkbConfig = true; # use xkb.options in tty.
|
|
|
|
|
# };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Enable CUPS to print documents.
|
|
|
|
|
services.printing.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable sound.
|
|
|
|
|
sound.enable = true;
|
|
|
|
|
hardware.pulseaudio.enable = true;
|
|
|
|
|
|
|
|
|
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
|
|
|
users.users.geemili = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
|
|
|
|
packages = with pkgs; [ ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
users.users.desttinghim = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
|
|
|
|
packages = with pkgs; [ ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
|
# $ nix search wget
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
helix
|
|
|
|
|
wget
|
2023-12-31 22:38:08 -07:00
|
|
|
|
git
|
2024-01-06 12:30:05 -07:00
|
|
|
|
|
|
|
|
|
juanfont-headscale.headscale # install to allow debugging/control of headscale using the CLI
|
2023-12-29 14:42:11 -07:00
|
|
|
|
];
|
|
|
|
|
|
2024-01-06 16:11:50 -07:00
|
|
|
|
environment.variables = {
|
|
|
|
|
EDITOR = "hx";
|
|
|
|
|
VISUAL = "hx";
|
|
|
|
|
};
|
|
|
|
|
|
2023-12-29 14:42:11 -07:00
|
|
|
|
# List services that you want to enable:
|
|
|
|
|
|
|
|
|
|
# Enable the OpenSSH daemon.
|
2023-12-31 22:27:25 -07:00
|
|
|
|
services.openssh = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings.PasswordAuthentication = false;
|
|
|
|
|
settings.KbdInteractiveAuthentication = false;
|
|
|
|
|
settings.PermitRootLogin = "no";
|
|
|
|
|
};
|
2023-12-29 14:42:11 -07:00
|
|
|
|
|
|
|
|
|
services.cockpit = {
|
|
|
|
|
enable = true;
|
|
|
|
|
openFirewall = true;
|
2023-12-30 19:14:02 -07:00
|
|
|
|
settings = {
|
|
|
|
|
WebService = {
|
|
|
|
|
Origins = "https://cockpit.samsehu.perli.casa wss://cockpit.samsehu.perli.casa";
|
|
|
|
|
ProtocolHeader = "X-Forwarded-Proto";
|
|
|
|
|
LoginTo = false;
|
|
|
|
|
};
|
|
|
|
|
};
|
2023-12-29 14:42:11 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.udisks2.enable = true;
|
|
|
|
|
|
2023-12-30 19:14:02 -07:00
|
|
|
|
services.jellyfin.enable = true;
|
2023-12-29 14:42:11 -07:00
|
|
|
|
|
|
|
|
|
services.blocky = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
|
|
|
|
ports.dns = 53;
|
|
|
|
|
ports.http = 4000;
|
|
|
|
|
upstreams = {
|
|
|
|
|
# Picks 2 random resolvers and returns answer from fastest one. Read docs for more info.
|
|
|
|
|
strategy = "parallel_best";
|
|
|
|
|
groups.default = [
|
|
|
|
|
# CloudFlare
|
|
|
|
|
"https://one.one.one.one/dns-query"
|
|
|
|
|
# OpenDNS
|
|
|
|
|
"https://doh.opendns.com/dns-query"
|
|
|
|
|
# Google
|
|
|
|
|
"8.8.8.8"
|
|
|
|
|
"8.8.4.4"
|
|
|
|
|
"2001:4860:4860::8888"
|
|
|
|
|
"2001:4860:4860::8844"
|
|
|
|
|
# Comcast/Our ISP
|
|
|
|
|
"75.75.75.75"
|
|
|
|
|
"75.75.76.76"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
bootstrapDns = {
|
|
|
|
|
upstream = "https://one.one.one.one/dns-query";
|
|
|
|
|
ips = [ "1.1.1.1" "1.0.0.1" ];
|
|
|
|
|
};
|
|
|
|
|
blocking = {
|
|
|
|
|
blackLists = {
|
|
|
|
|
ads = ["https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"];
|
|
|
|
|
};
|
|
|
|
|
clientGroupsBlock = {
|
|
|
|
|
default = [ "ads" ];
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-01-06 12:30:05 -07:00
|
|
|
|
customDNS = {
|
|
|
|
|
rewrite = {
|
|
|
|
|
"cockpit.samsehu.perli.casa" = "samsehu.perli.casa";
|
2024-01-06 17:30:40 -07:00
|
|
|
|
"git.samsehu.perli.casa" = "samsehu.perli.casa";
|
2024-01-06 17:33:27 -07:00
|
|
|
|
"nextcloud.samsehu.perli.casa" = "samsehu.perli.casa";
|
2024-01-06 12:30:05 -07:00
|
|
|
|
};
|
|
|
|
|
mapping = {
|
|
|
|
|
"samsehu.perli.casa" = "100.64.0.3";
|
|
|
|
|
};
|
|
|
|
|
};
|
2023-12-29 14:42:11 -07:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-06 20:17:59 -07:00
|
|
|
|
services.seafile = {
|
|
|
|
|
enable = true;
|
|
|
|
|
adminEmail = "fresh.car0178@geemili.xyz";
|
|
|
|
|
initialAdminPassword = "tried pureness impish";
|
|
|
|
|
ccnetSettings.General.SERVICE_URL = "https://seafile.samsehu.perli.casa";
|
|
|
|
|
};
|
|
|
|
|
|
2023-12-29 14:42:11 -07:00
|
|
|
|
services.forgejo = {
|
|
|
|
|
enable = true;
|
2023-12-30 19:14:02 -07:00
|
|
|
|
settings = {
|
|
|
|
|
server.ROOT_URL = "https://git.samsehu.perli.casa/";
|
|
|
|
|
server.HTTP_ADDR = "127.0.0.1";
|
|
|
|
|
};
|
2023-12-29 14:42:11 -07:00
|
|
|
|
};
|
|
|
|
|
|
2023-12-31 18:27:23 -07:00
|
|
|
|
# lldap LDAP authentication server
|
|
|
|
|
users.users.lldap = {
|
|
|
|
|
# allocates the `uid` in the range 100-999, which indicates to software like login managers that it should not be displayed to the user.
|
|
|
|
|
isSystemUser = true;
|
|
|
|
|
group = "lldap";
|
|
|
|
|
};
|
|
|
|
|
users.groups.lldap = {};
|
2023-12-29 14:42:11 -07:00
|
|
|
|
services.lldap = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
|
|
|
|
ldap_base_dn = "dc=twins,dc=pearson";
|
|
|
|
|
# Sets the root administrator's user name
|
|
|
|
|
ldap_user_dn = "admin";
|
2023-12-30 19:14:02 -07:00
|
|
|
|
http_host = "127.0.0.1";
|
2023-12-29 14:42:11 -07:00
|
|
|
|
};
|
2023-12-30 19:39:57 -07:00
|
|
|
|
environment = {
|
|
|
|
|
LLDAP_LDAP_USER_PASS_FILE = config.age.secrets.LLDAP_DEFAULT_ADMIN_PASSWORD.path;
|
|
|
|
|
};
|
2023-12-29 21:20:53 -07:00
|
|
|
|
};
|
|
|
|
|
|
2023-12-30 12:00:30 -07:00
|
|
|
|
# Dynamic DNS through duck dns
|
|
|
|
|
users.users.dynamicdns = {
|
|
|
|
|
# allocates the `uid` in the range 100-999, which indicates to software like login managers that it should not be displayed to the user.
|
|
|
|
|
isSystemUser = true;
|
|
|
|
|
group = "dynamicdns";
|
|
|
|
|
};
|
|
|
|
|
users.groups.dynamicdns = {};
|
|
|
|
|
systemd.services.dynamic-dns-updater = {
|
|
|
|
|
serviceConfig.User = "dynamicdns";
|
|
|
|
|
path = [ pkgs.curl ];
|
2023-12-30 19:14:02 -07:00
|
|
|
|
script = "curl --silent --url-query domains=samsehuperli --url-query token@${config.age.secrets.samsehu_DUCK_DNS_TOKEN.path} https://www.duckdns.org/update";
|
2023-12-30 12:00:30 -07:00
|
|
|
|
startAt = "hourly";
|
|
|
|
|
};
|
|
|
|
|
systemd.timers.dynamic-dns-updater = {
|
|
|
|
|
timerConfig.RandomizedDelaySec = "15m";
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-06 15:45:08 -07:00
|
|
|
|
# Next cloud setup
|
|
|
|
|
services.nginx.enable = false;
|
|
|
|
|
services.nextcloud = {
|
|
|
|
|
enable = true;
|
2024-01-06 15:54:49 -07:00
|
|
|
|
home = "/zroot/nextcloud";
|
2024-01-06 17:49:51 -07:00
|
|
|
|
hostName = "nextcloud.samsehu.perli.casa";
|
2024-01-06 21:37:55 -07:00
|
|
|
|
config.trustedProxies = [
|
|
|
|
|
"nextcloud.samsehu.perli.casa"
|
|
|
|
|
];
|
2024-01-06 16:33:44 -07:00
|
|
|
|
config.adminpassFile = "/var/nextcloud-admin-pass";
|
2024-01-06 15:45:08 -07:00
|
|
|
|
};
|
|
|
|
|
services.phpfpm.pools.nextcloud.settings = {
|
|
|
|
|
"listen.owner" = config.services.caddy.user;
|
|
|
|
|
"listen.group" = config.services.caddy.group;
|
|
|
|
|
};
|
|
|
|
|
|
2023-12-30 12:00:30 -07:00
|
|
|
|
# Reverse proxy with Caddy
|
|
|
|
|
services.caddy = {
|
|
|
|
|
enable = true;
|
2023-12-30 19:14:02 -07:00
|
|
|
|
globalConfig = ''
|
2024-01-06 19:31:23 -07:00
|
|
|
|
# servers {
|
|
|
|
|
# protocols h1 h2
|
|
|
|
|
# }
|
2023-12-30 19:14:02 -07:00
|
|
|
|
email "fresh.car0178@geemili.xyz"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
virtualHosts."lldap.samsehu.perli.casa".extraConfig = ''
|
2024-01-06 12:30:05 -07:00
|
|
|
|
bind 100.64.0.3
|
2023-12-30 19:14:02 -07:00
|
|
|
|
reverse_proxy localhost:17170
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
virtualHosts."headscale.samsehu.perli.casa".extraConfig = ''
|
2024-01-06 19:31:23 -07:00
|
|
|
|
bind 100.64.0.3 192.168.0.69
|
2023-12-30 19:14:02 -07:00
|
|
|
|
reverse_proxy localhost:64639
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
virtualHosts."cockpit.samsehu.perli.casa".extraConfig = ''
|
2024-01-06 12:30:05 -07:00
|
|
|
|
bind 100.64.0.3
|
2023-12-30 19:14:02 -07:00
|
|
|
|
reverse_proxy localhost:9090
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
virtualHosts."git.samsehu.perli.casa".extraConfig = ''
|
2024-01-06 19:31:23 -07:00
|
|
|
|
bind 100.64.0.3 192.168.0.69
|
2023-12-30 19:14:02 -07:00
|
|
|
|
reverse_proxy localhost:3000
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
virtualHosts."jellyfin.samsehu.perli.casa".extraConfig = ''
|
|
|
|
|
reverse_proxy localhost:8096
|
2023-12-30 12:00:30 -07:00
|
|
|
|
'';
|
2024-01-06 15:45:08 -07:00
|
|
|
|
|
|
|
|
|
virtualHosts."nextcloud.samsehu.perli.casa".extraConfig = ''
|
2024-01-06 19:31:23 -07:00
|
|
|
|
bind 100.64.0.3 192.168.0.69
|
2024-01-06 19:19:08 -07:00
|
|
|
|
php_fastcgi unix/${config.services.phpfpm.pools.nextcloud.socket} {
|
2024-01-06 21:15:23 -07:00
|
|
|
|
root ${config.services.nextcloud.package}
|
2024-01-06 19:19:08 -07:00
|
|
|
|
capture_stderr
|
2024-01-06 21:28:57 -07:00
|
|
|
|
header_up Host {upstream.hostport}
|
2024-01-06 19:19:08 -07:00
|
|
|
|
}
|
2024-01-06 15:45:08 -07:00
|
|
|
|
'';
|
2023-12-30 12:00:30 -07:00
|
|
|
|
};
|
|
|
|
|
|
2023-12-30 19:14:02 -07:00
|
|
|
|
# Headscale for access to the network while away from home
|
|
|
|
|
services.headscale = {
|
|
|
|
|
enable = true;
|
2024-01-06 12:30:05 -07:00
|
|
|
|
package = pkgs.juanfont-headscale.headscale;
|
2023-12-30 19:14:02 -07:00
|
|
|
|
settings = {
|
|
|
|
|
server_url = "https://headscale.samsehu.perli.casa";
|
|
|
|
|
listen_addr = "127.0.0.1:64639";
|
|
|
|
|
metrics_listen_addr = "127.0.0.1:64640";
|
|
|
|
|
tls_cert_path = null;
|
|
|
|
|
tls_key_path = null;
|
2024-01-01 01:57:51 -07:00
|
|
|
|
|
|
|
|
|
dns_config = {
|
2024-01-06 16:01:49 -07:00
|
|
|
|
nameservers = [ "100.64.0.3" ];
|
2024-01-01 01:57:51 -07:00
|
|
|
|
magic_dns = true;
|
2024-01-06 16:41:01 -07:00
|
|
|
|
base_domain = "ts.samsehu.perli.casa";
|
2024-01-06 16:51:56 -07:00
|
|
|
|
restricted_nameservers = {
|
|
|
|
|
"samsehu.perli.casa" = [ "100.64.0.3" ];
|
|
|
|
|
};
|
2024-01-06 12:30:05 -07:00
|
|
|
|
# extra_records = [
|
|
|
|
|
# { name = "cockpit.samsehu.perli.casa"; type = "A"; value = "100.64.0.3"; }
|
|
|
|
|
# { name = "lldap.samsehu.perli.casa"; type = "A"; value = "100.64.0.3"; }
|
|
|
|
|
# ];
|
2024-01-01 01:57:51 -07:00
|
|
|
|
};
|
2024-01-06 12:30:05 -07:00
|
|
|
|
|
|
|
|
|
acl_policy_path = pkgs.writeText "acl_policy.hujson" ''
|
|
|
|
|
{
|
|
|
|
|
"groups": {
|
2024-01-06 14:42:34 -07:00
|
|
|
|
"group:servers": [
|
|
|
|
|
"samsehu",
|
|
|
|
|
],
|
2024-01-06 12:30:05 -07:00
|
|
|
|
"group:admin": [
|
|
|
|
|
"geemili",
|
|
|
|
|
"desttinghim",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
"acls": [
|
|
|
|
|
{
|
|
|
|
|
"action": "accept",
|
|
|
|
|
"src": ["group:admin"],
|
|
|
|
|
"dst": ["*:*"],
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"ssh": [
|
|
|
|
|
{
|
|
|
|
|
"action": "accept",
|
2024-01-06 14:42:34 -07:00
|
|
|
|
"src": ["group:admin"],
|
|
|
|
|
"dst": ["group:servers"],
|
|
|
|
|
"users": ["group:admin", "geemili", "desttinghim"],
|
2024-01-06 12:30:05 -07:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
'';
|
2023-12-30 19:14:02 -07:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2023-12-31 18:27:23 -07:00
|
|
|
|
services.tailscale.enable = true;
|
|
|
|
|
|
2023-12-29 14:42:11 -07:00
|
|
|
|
# Enable automatic upgrades
|
|
|
|
|
system.autoUpgrade.enable = true;
|
|
|
|
|
system.autoUpgrade.allowReboot = true;
|
2023-12-31 22:38:08 -07:00
|
|
|
|
system.autoUpgrade.flake = "git+http://127.0.0.1:3000/Twins/server-configuration.git";
|
2023-12-29 14:42:11 -07:00
|
|
|
|
|
|
|
|
|
# Enable automatic garbage collection
|
|
|
|
|
nix.gc = {
|
|
|
|
|
automatic = true;
|
|
|
|
|
dates = "weekly";
|
|
|
|
|
options = "--delete-older-than 30d";
|
|
|
|
|
};
|
|
|
|
|
|
2023-12-29 22:10:30 -07:00
|
|
|
|
nix.settings.trusted-users = [ "geemili" ];
|
|
|
|
|
|
2023-12-29 14:42:11 -07:00
|
|
|
|
# Open ports in the firewall.
|
|
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
|
# Blocky DNS
|
|
|
|
|
53
|
|
|
|
|
|
|
|
|
|
# Blocky API
|
|
|
|
|
4000
|
|
|
|
|
|
2023-12-30 12:00:30 -07:00
|
|
|
|
# Caddy HTTP and HTTPS
|
|
|
|
|
80
|
|
|
|
|
443
|
2023-12-29 14:42:11 -07:00
|
|
|
|
];
|
|
|
|
|
networking.firewall.allowedUDPPorts = [
|
|
|
|
|
# Blocky DNS
|
|
|
|
|
53
|
2023-12-30 19:14:02 -07:00
|
|
|
|
|
2023-12-30 22:14:03 -07:00
|
|
|
|
# mDNS
|
|
|
|
|
5353
|
|
|
|
|
|
2023-12-30 19:14:02 -07:00
|
|
|
|
# Headscale UDP port for STUN protocol
|
|
|
|
|
3478
|
2023-12-29 14:42:11 -07:00
|
|
|
|
];
|
2023-12-29 19:50:55 -07:00
|
|
|
|
|
|
|
|
|
# Use systemd-resolved and set networkmanager to allow mdns
|
2024-01-06 14:42:34 -07:00
|
|
|
|
services.resolved = {
|
|
|
|
|
enable = true;
|
|
|
|
|
extraConfig = ''
|
|
|
|
|
DNSStubListener=false
|
|
|
|
|
'';
|
|
|
|
|
};
|
2023-12-29 19:50:55 -07:00
|
|
|
|
networking.networkmanager.connectionConfig."connection.mdns" = 2; # 2 == yes
|
2023-12-29 14:42:11 -07:00
|
|
|
|
|
|
|
|
|
# Copy the NixOS configuration file and link it from the resulting system
|
|
|
|
|
# (/run/current-system/configuration.nix). This is useful in case you
|
|
|
|
|
# accidentally delete configuration.nix.
|
|
|
|
|
# system.copySystemConfiguration = true;
|
|
|
|
|
|
|
|
|
|
# This option defines the first version of NixOS you have installed on this particular machine,
|
|
|
|
|
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
|
|
|
|
|
#
|
|
|
|
|
# Most users should NEVER change this value after the initial install, for any reason,
|
|
|
|
|
# even if you've upgraded your system to a new NixOS release.
|
|
|
|
|
#
|
|
|
|
|
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
|
|
|
|
|
# so changing it will NOT upgrade your system.
|
|
|
|
|
#
|
|
|
|
|
# This value being lower than the current NixOS release does NOT mean your system is
|
|
|
|
|
# out of date, out of support, or vulnerable.
|
|
|
|
|
#
|
|
|
|
|
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
|
|
|
|
|
# and migrated your data accordingly.
|
|
|
|
|
#
|
|
|
|
|
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
|
|
|
|
|
system.stateVersion = "23.11"; # Did you read the comment?
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|