2025-02-16 10:43:53 -06:00
|
|
|
{
|
|
|
|
sops-nix,
|
|
|
|
disko,
|
|
|
|
slippi,
|
|
|
|
self,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
home-manager,
|
|
|
|
modulesPath,
|
|
|
|
lib,
|
|
|
|
config,
|
2025-02-16 22:10:07 -06:00
|
|
|
pkgs,
|
2025-02-16 10:43:53 -06:00
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
imports = with self.outputs.nixosModules; [
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
2025-02-16 11:17:59 -06:00
|
|
|
home-manager.nixosModules.home-manager
|
2025-02-16 10:43:53 -06:00
|
|
|
sops-nix.nixosModules.sops
|
|
|
|
disko.nixosModules.disko
|
|
|
|
slippi.nixosModules.default
|
2025-02-16 11:17:59 -06:00
|
|
|
deno-netlify-ddns-client
|
|
|
|
shell-defaults-and-applications
|
|
|
|
desktop
|
|
|
|
gnome
|
|
|
|
wifi
|
|
|
|
printing
|
|
|
|
podman
|
|
|
|
virtual-machines
|
|
|
|
postgres
|
|
|
|
gaming
|
2025-02-16 23:53:40 -06:00
|
|
|
restic
|
2025-02-18 16:28:00 -06:00
|
|
|
(
|
|
|
|
{
|
|
|
|
config,
|
|
|
|
options,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
cfg = config.lyte.router;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.lyte.router = {
|
|
|
|
enable = lib.mkEnableOption "Enable home router functionality";
|
|
|
|
hostname = lib.mkOption {
|
|
|
|
default = "router";
|
|
|
|
description = "The hostname of the router. NOT the FQDN. This value concatenated with the domain will form the FQDN of this router host.";
|
|
|
|
type = lib.types.string;
|
|
|
|
example = "my-home-router";
|
|
|
|
};
|
|
|
|
domain = lib.mkOption {
|
|
|
|
# default = null;
|
|
|
|
description = "The domain of the router.";
|
|
|
|
type = lib.types.string;
|
|
|
|
example = "lan";
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
hosts = {
|
|
|
|
dragon = {
|
|
|
|
ip = "192.168.0.10";
|
|
|
|
};
|
|
|
|
bald = {
|
|
|
|
ip = "192.168.0.11";
|
|
|
|
additionalHosts = [
|
|
|
|
"ourcraft.lyte.dev"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
beefcake = {
|
|
|
|
ip = "192.168.0.9";
|
|
|
|
additionalHosts = [
|
|
|
|
".beefcake.lan"
|
|
|
|
"a.lyte.dev"
|
|
|
|
"atuin.h.lyte.dev"
|
|
|
|
"audio.lyte.dev"
|
|
|
|
"bw.lyte.dev"
|
|
|
|
"files.lyte.dev"
|
|
|
|
"finances.h.lyte.dev"
|
|
|
|
"git.lyte.dev"
|
|
|
|
"grafana.h.lyte.dev"
|
|
|
|
"idm.h.lyte.dev"
|
|
|
|
"matrix.lyte.dev"
|
|
|
|
"nextcloud.h.lyte.dev"
|
|
|
|
"nix.h.lyte.dev"
|
|
|
|
"onlyoffice.h.lyte.dev"
|
|
|
|
"paperless.h.lyte.dev"
|
|
|
|
"prometheus.h.lyte.dev"
|
|
|
|
"video.lyte.dev"
|
|
|
|
"vpn.h.lyte.dev"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
hosts = {
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
interfaces = {
|
|
|
|
wan = {
|
|
|
|
name = lib.mkOption {
|
|
|
|
default = "wan";
|
|
|
|
type = lib.types.string;
|
|
|
|
};
|
|
|
|
mac = lib.mkOption {
|
|
|
|
type = lib.types.string;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
lan = {
|
|
|
|
name = lib.mkOption {
|
|
|
|
default = "lan";
|
|
|
|
type = lib.types.string;
|
|
|
|
};
|
|
|
|
mac = lib.mkOption {
|
|
|
|
type = lib.types.string;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# TODO: would be nice to support multiple VLANs?
|
|
|
|
ipv4 = {
|
|
|
|
address = lib.mkOption {
|
|
|
|
default = "192.168.0.1";
|
|
|
|
description = "The IPv4 address of the router.";
|
|
|
|
type = lib.types.string;
|
|
|
|
example = "10.0.0.1";
|
|
|
|
};
|
|
|
|
cidr = lib.mkOption {
|
|
|
|
# TODO: derive IPv4 from CIDR?
|
|
|
|
description = ''The CIDR to route. If null, will use "''${config.lyte.router.ipv4}/16".'';
|
|
|
|
default = null;
|
|
|
|
example = "10.0.0.0/8";
|
|
|
|
type = lib.types.string;
|
|
|
|
defaultText = ''''${config.lyte.router.ipv4}/16'';
|
|
|
|
};
|
|
|
|
netmask = lib.mkOption {
|
|
|
|
# TODO: derive from CIDR?
|
|
|
|
default = "255.255.255.0";
|
|
|
|
type = lib.types.string;
|
|
|
|
};
|
|
|
|
dhcp-lease-space = {
|
|
|
|
min = lib.mkOption {
|
|
|
|
default = "192.168.0.30";
|
|
|
|
type = lib.types.string;
|
|
|
|
};
|
|
|
|
max = lib.mkOption {
|
|
|
|
default = "192.168.0.250";
|
|
|
|
type = lib.types.string;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable (
|
|
|
|
let
|
|
|
|
cidr = lib.defaultTo "${cfg.ipv4}/16" cfg.cidr;
|
|
|
|
wan = cfg.interfaces.wan.name;
|
|
|
|
lan = cfg.interfaces.lan.name;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
# disable some of the sane defaults
|
|
|
|
# TODO: detect conflicts with NixOS firewall options? this may be done for us?
|
|
|
|
useDHCP = false;
|
|
|
|
firewall.enable = false;
|
|
|
|
|
|
|
|
# use systemd.network for network interface configuration
|
|
|
|
useNetworkd = true;
|
|
|
|
|
|
|
|
# maybe we need this?
|
|
|
|
nat.enable = true;
|
|
|
|
|
|
|
|
boot.kernel.sysctl = {
|
|
|
|
"net.ipv4.conf.all.forwarding" = true;
|
|
|
|
"net.ipv6.conf.all.forwarding" = true;
|
|
|
|
|
|
|
|
"net.ipv4.conf.default.rp_filter" = 1;
|
|
|
|
"net.ipv4.conf.${interfaces.wan.name}.rp_filter" = 1;
|
|
|
|
"net.ipv4.conf.${interfaces.lan.name}.rp_filter" = 0;
|
|
|
|
|
|
|
|
"net.ipv6.conf.${interfaces.wan.name}.accept_ra" = 2;
|
|
|
|
"net.ipv6.conf.${interfaces.wan.name}.autoconf" = 1;
|
|
|
|
|
|
|
|
"net.ipv6.conf.all.use_tempaddr" = 2;
|
|
|
|
"net.ipv6.conf.default.use_tempaddr" = lib.mkForce 2;
|
|
|
|
"net.ipv6.conf.${interfaces.wan.name}.use_tempaddr" = 2;
|
|
|
|
|
|
|
|
# "net.ipv6.conf.${interfaces.wan.name}.addr_gen_mode" = 2;
|
|
|
|
};
|
|
|
|
|
|
|
|
extraHosts = ''
|
|
|
|
127.0.0.1 localhost
|
|
|
|
127.0.0.2 ${cfg.hostname}.${cfg.domain} ${cfg.hostname}
|
|
|
|
${cfg.ipv4} ${cfg.hostname}.${cfg.domain} ${cfg.hostname}
|
|
|
|
|
|
|
|
::1 localhost ip6-localhost ip6-loopback
|
|
|
|
ff02::1 ip6-allnodes
|
|
|
|
ff02::2 ip6-allrouters
|
|
|
|
'';
|
|
|
|
|
|
|
|
nftables = {
|
|
|
|
enable = true;
|
|
|
|
checkRuleset = true;
|
|
|
|
flushRuleset = true;
|
|
|
|
|
|
|
|
ruleset = ''
|
|
|
|
table inet filter {
|
|
|
|
## set LANv4 {
|
|
|
|
## type ipv4_addr
|
|
|
|
## flags interval
|
|
|
|
## elements = { 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16, 169.254.0.0/16 }
|
|
|
|
## }
|
|
|
|
## set LANv6 {
|
|
|
|
## type ipv6_addr
|
|
|
|
## flags interval
|
|
|
|
## elements = { fd00::/8, fe80::/10 }
|
|
|
|
## }
|
|
|
|
## TODO: maybe tailnet?
|
|
|
|
|
|
|
|
## chain my_input_lan {
|
|
|
|
## udp sport 1900 udp dport >= 1024 meta pkttype unicast limit rate 4/second burst 20 packets accept comment "Accept UPnP IGD port mapping reply"
|
|
|
|
## udp sport netbios-ns udp dport >= 1024 meta pkttype unicast accept comment "Accept Samba Workgroup browsing replies"
|
|
|
|
## }
|
|
|
|
|
|
|
|
chain input {
|
|
|
|
type filter hook input priority 0; policy drop;
|
|
|
|
|
|
|
|
iif lo accept comment "Accept any localhost traffic"
|
|
|
|
ct state invalid drop comment "Drop invalid connections"
|
|
|
|
ct state established,related accept comment "Accept traffic originated from us"
|
|
|
|
|
|
|
|
meta l4proto ipv6-icmp accept comment "Accept ICMPv6"
|
|
|
|
meta l4proto icmp accept comment "Accept ICMP"
|
|
|
|
ip protocol igmp accept comment "Accept IGMP"
|
|
|
|
|
|
|
|
ip6 nexthdr icmpv6 icmpv6 type nd-router-solicit accept
|
|
|
|
ip6 nexthdr icmpv6 icmpv6 type nd-router-advert accept comment "Accept IPv6 router advertisements"
|
|
|
|
udp dport dhcpv6-client accept comment "IPv6 DHCP"
|
|
|
|
|
|
|
|
ip6 nexthdr icmpv6 icmpv6 type { echo-request, nd-neighbor-solicit, nd-neighbor-advert, nd-router-solicit, nd-router-advert, mld-listener-query, destination-unreachable, packet-too-big, time-exceeded, parameter-problem } accept comment "Accept IPv6 ICMP and meta stuff"
|
|
|
|
ip protocol icmp icmp type { echo-request, destination-unreachable, router-advertisement, time-exceeded, parameter-problem } accept comment "Accept IPv4 ICMP and meta stuff"
|
|
|
|
ip protocol icmpv6 accept
|
|
|
|
ip protocol icmp accept
|
|
|
|
meta l4proto ipv6-icmp counter accept
|
|
|
|
udp dport dhcpv6-client counter accept
|
|
|
|
|
|
|
|
udp dport mdns ip6 daddr ff02::fb accept comment "Accept mDNS"
|
|
|
|
udp dport mdns ip daddr 224.0.0.251 accept comment "Accept mDNS"
|
|
|
|
|
|
|
|
tcp dport 2201 accept comment "Accept SSH on port 2201"
|
|
|
|
tcp dport 53 accept comment "Accept DNS"
|
|
|
|
udp dport 53 accept comment "Accept DNS"
|
|
|
|
|
|
|
|
tcp dport { 80, 443 } accept comment "Allow HTTP/HTTPS to server (see nat prerouting)"
|
|
|
|
udp dport { 80, 443 } accept comment "Allow QUIC to server (see nat prerouting)"
|
|
|
|
tcp dport { 22 } accept comment "Allow SSH to server (see nat prerouting)"
|
|
|
|
tcp dport { 25565 } accept comment "Allow Minecraft server connections (see nat prerouting)"
|
|
|
|
udp dport { 34197 } accept comment "Allow Factorio server connections (see nat prerouting)"
|
|
|
|
|
|
|
|
iifname "${lan}" accept comment "Allow local network to access the router"
|
|
|
|
iifname "tailscale0" accept comment "Allow local network to access the router"
|
|
|
|
|
|
|
|
## ip6 saddr @LANv6 jump my_input_lan comment "Connections from private IP address ranges"
|
|
|
|
## ip saddr @LANv4 jump my_input_lan comment "Connections from private IP address ranges"
|
|
|
|
|
|
|
|
iifname "${wan}" counter drop comment "Drop all other unsolicited traffic from wan"
|
|
|
|
}
|
|
|
|
|
|
|
|
chain output {
|
|
|
|
type filter hook output priority 0;
|
|
|
|
accept
|
|
|
|
}
|
|
|
|
|
|
|
|
chain forward {
|
|
|
|
type filter hook forward priority 0;
|
|
|
|
accept
|
|
|
|
}
|
|
|
|
|
|
|
|
## chain forward {
|
|
|
|
## type filter hook forward priority filter; policy drop;
|
|
|
|
|
|
|
|
## iifname { "${lan}" } oifname { "${wan}" } accept comment "Allow trusted LAN to WAN"
|
|
|
|
## iifname { "tailscale0" } oifname { "${wan}" } accept comment "Allow trusted LAN to WAN"
|
|
|
|
## iifname { "${wan}" } oifname { "${lan}" } ct state { established, related } accept comment "Allow established back to LAN"
|
|
|
|
## }
|
|
|
|
}
|
|
|
|
|
|
|
|
table ip nat {
|
|
|
|
chain prerouting {
|
|
|
|
type nat hook prerouting priority dstnat;
|
|
|
|
|
|
|
|
iifname ${lan} accept
|
|
|
|
iifname tailscale0 accept
|
|
|
|
|
|
|
|
iifname ${wan} tcp dport {22} dnat to ${hosts.beefcake.ip}
|
|
|
|
iifname ${wan} tcp dport {80, 443} dnat to ${hosts.beefcake.ip}
|
|
|
|
iifname ${wan} udp dport {80, 443} dnat to ${hosts.beefcake.ip}
|
|
|
|
iifname ${wan} tcp dport {26966} dnat to ${hosts.beefcake.ip}
|
|
|
|
iifname ${wan} tcp dport {25565} dnat to ${hosts.bald.ip}
|
|
|
|
iifname ${wan} udp dport {25565} dnat to ${hosts.bald.ip}
|
|
|
|
iifname ${wan} udp dport {34197} dnat to ${hosts.beefcake.ip}
|
|
|
|
}
|
|
|
|
|
|
|
|
chain postrouting {
|
|
|
|
type nat hook postrouting priority 100; policy accept;
|
|
|
|
oifname "${wan}" masquerade
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.network = {
|
|
|
|
enable = true;
|
|
|
|
# wait-online.anyInterface = true;
|
|
|
|
|
|
|
|
# configure known names for the network interfaces by their mac addresses
|
|
|
|
links = {
|
|
|
|
"20-${wan}" = {
|
|
|
|
enable = true;
|
|
|
|
matchConfig = {
|
|
|
|
MACAddress = cfg.interfaces.wan.mac;
|
|
|
|
};
|
|
|
|
linkConfig = {
|
|
|
|
Name = cfg.interfaces.wan.name;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"30-${lan}" = {
|
|
|
|
enable = true;
|
|
|
|
matchConfig = {
|
|
|
|
MACAddress = cfg.interfaces.lan.mac;
|
|
|
|
};
|
|
|
|
linkConfig = {
|
|
|
|
Name = cfg.interfaces.lan.name;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# configure networks for the interfaces
|
|
|
|
networks = {
|
|
|
|
# LAN configuration is very simple and mostly forwarded between
|
|
|
|
# TODO: IPv6
|
|
|
|
"50-${lan}" = {
|
|
|
|
matchConfig.Name = "${lan}";
|
|
|
|
linkConfig = {
|
|
|
|
RequiredForOnline = "enslaved";
|
|
|
|
};
|
|
|
|
address = [
|
|
|
|
cfg.cidr
|
|
|
|
];
|
|
|
|
networkConfig = {
|
|
|
|
ConfigureWithoutCarrier = true;
|
|
|
|
IPv6SendRA = true;
|
|
|
|
DHCPPrefixDelegation = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
WAN configuration requires DHCP to get addresses
|
|
|
|
we also disable some options to be certain we retain as much networking
|
|
|
|
control as we reasonably can, such as not letting the ISP determine our
|
|
|
|
hostname or DNS configuration
|
|
|
|
*/
|
|
|
|
# TODO: IPv6 (prefix delegation)
|
|
|
|
"40-${wan}" = {
|
|
|
|
matchConfig.Name = "${wan}";
|
|
|
|
networkConfig = {
|
|
|
|
DHCP = true;
|
|
|
|
/*
|
|
|
|
IPv6AcceptRA = true;
|
|
|
|
IPv6PrivacyExtensions = true;
|
|
|
|
IPForward = true;
|
|
|
|
*/
|
|
|
|
};
|
|
|
|
dhcpV6Config = {
|
|
|
|
/*
|
|
|
|
ForceDHCPv6PDOtherInformation = true;
|
|
|
|
UseHostname = false;
|
|
|
|
UseDNS = false;
|
|
|
|
UseNTP = false;
|
|
|
|
*/
|
|
|
|
# PrefixDelegationHint = "::/56";
|
|
|
|
};
|
|
|
|
dhcpV4Config = {
|
|
|
|
Hostname = cfg.hostname;
|
|
|
|
|
|
|
|
# ignore many things our ISP may suggest
|
|
|
|
UseHostname = false;
|
|
|
|
UseDNS = false;
|
|
|
|
UseNTP = false;
|
|
|
|
UseSIP = false;
|
|
|
|
UseRoutes = false;
|
|
|
|
UseGateway = true;
|
|
|
|
};
|
|
|
|
linkConfig = {
|
|
|
|
RequiredForOnline = "routable";
|
|
|
|
# Name = interfaces.wan.name;
|
|
|
|
};
|
|
|
|
ipv6AcceptRAConfig = {
|
|
|
|
DHCPv6Client = "always";
|
|
|
|
UseDNS = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.resolved.enable = false;
|
|
|
|
|
|
|
|
services.dnsmasq = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
listen-address = "::,127.0.0.1,${cfg.ipv4.address}";
|
|
|
|
port = 53;
|
|
|
|
|
|
|
|
/*
|
|
|
|
dhcp-authoritative = true;
|
|
|
|
dnssec = true;
|
|
|
|
*/
|
|
|
|
enable-ra = true;
|
|
|
|
|
|
|
|
server = [
|
|
|
|
"1.1.1.1"
|
|
|
|
"9.9.9.9"
|
|
|
|
"8.8.8.8"
|
|
|
|
];
|
|
|
|
|
|
|
|
domain-needed = true;
|
|
|
|
bogus-priv = true;
|
|
|
|
no-resolv = true;
|
|
|
|
|
|
|
|
cache-size = "10000";
|
|
|
|
|
|
|
|
dhcp-range = with dhcp_lease_space; [
|
|
|
|
"${lan},${min},${max},${netmask},24h"
|
|
|
|
"::,constructor:${lan},ra-stateless,ra-names,4h"
|
|
|
|
];
|
|
|
|
except-interface = wan;
|
|
|
|
interface = lan;
|
|
|
|
dhcp-host =
|
|
|
|
[
|
|
|
|
]
|
|
|
|
++ (lib.attrsets.mapAttrsToList (
|
|
|
|
name:
|
|
|
|
{
|
|
|
|
ip,
|
|
|
|
identifier ? name,
|
|
|
|
time ? "12h",
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
"${name},${ip},${identifier},${time}"
|
|
|
|
) hosts);
|
|
|
|
|
|
|
|
address =
|
|
|
|
[
|
|
|
|
"/${hostname}.${domain}/${ip}"
|
|
|
|
]
|
|
|
|
++ (lib.lists.flatten (
|
|
|
|
lib.attrsets.mapAttrsToList (
|
|
|
|
name:
|
|
|
|
{
|
|
|
|
ip,
|
|
|
|
additionalHosts ? [ ],
|
|
|
|
identifier ? name,
|
|
|
|
time ? "12h",
|
|
|
|
}:
|
|
|
|
[
|
|
|
|
"/${name}.${domain}/${ip}"
|
|
|
|
(lib.lists.forEach additionalHosts (h: "/${h}/${ip}"))
|
|
|
|
]
|
|
|
|
) hosts
|
|
|
|
));
|
|
|
|
|
|
|
|
# local domains
|
|
|
|
local = "/lan/";
|
|
|
|
domain = "lan";
|
|
|
|
expand-hosts = true;
|
|
|
|
|
|
|
|
# don't use /etc/hosts as this would advertise surfer as localhost
|
|
|
|
no-hosts = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
)
|
2025-02-18 11:15:48 -06:00
|
|
|
(
|
|
|
|
{ config, ... }:
|
|
|
|
lib.mkIf config.family-account.enable {
|
|
|
|
users.groups.flanfam = { };
|
|
|
|
users.users.flanfam = {
|
|
|
|
isNormalUser = true;
|
|
|
|
home = "/home/flanfam";
|
|
|
|
description = "Flanagan Family";
|
|
|
|
createHome = true;
|
|
|
|
openssh.authorizedKeys.keys = [ self.outputs.pubkey ];
|
|
|
|
group = "flanfam";
|
|
|
|
shell = lib.mkIf config.lyte.shell.enable pkgs.fish;
|
|
|
|
extraGroups = [
|
|
|
|
"users"
|
2025-02-18 11:55:54 -06:00
|
|
|
"power"
|
2025-02-18 11:15:48 -06:00
|
|
|
"video"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
home-manager.users.flanfam = {
|
|
|
|
# TODO: .face
|
|
|
|
accounts.email.accounts.primary = {
|
|
|
|
primary = true;
|
|
|
|
address = "home@lyte.dev";
|
|
|
|
};
|
|
|
|
home = {
|
|
|
|
username = "flanfam";
|
|
|
|
homeDirectory = "/home/flanfam";
|
|
|
|
stateVersion = lib.mkDefault config.system.stateVersion;
|
|
|
|
file.".face" = {
|
|
|
|
enable = config.home-manager.users.daniel.lyte.desktop.enable;
|
|
|
|
source = builtins.fetchurl {
|
|
|
|
url = "https://lyte.dev/icon.png";
|
|
|
|
sha256 = "sha256:0nf22gwasc64yc5317d0k0api0fwyrf4g3wxljdi2p3ki079ky53";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
imports = with self.outputs.homeManagerModules; [
|
|
|
|
{
|
|
|
|
_module.args.fullName = config.users.users.flanfam.description;
|
|
|
|
}
|
|
|
|
default
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
)
|
2025-02-16 10:43:53 -06:00
|
|
|
];
|
|
|
|
|
2025-02-17 16:09:06 -06:00
|
|
|
options = {
|
|
|
|
family-account = {
|
|
|
|
enable = lib.mkEnableOption "Enable a user account for family members";
|
2025-02-16 10:43:53 -06:00
|
|
|
};
|
2025-02-17 16:09:06 -06:00
|
|
|
};
|
|
|
|
|
2025-02-18 11:15:48 -06:00
|
|
|
config = {
|
2025-02-18 11:28:52 -06:00
|
|
|
system.configurationRevision = toString (
|
|
|
|
self.shortRev or self.dirtyShortRev or self.lastModified or "unknown"
|
|
|
|
);
|
2025-02-18 11:26:49 -06:00
|
|
|
environment.etc = {
|
|
|
|
"lytedev/rev".text = config.system.configurationRevision;
|
2025-02-18 11:32:21 -06:00
|
|
|
"lytedev/lastModified".text = toString (self.lastModified or "unknown");
|
2025-02-18 11:26:49 -06:00
|
|
|
};
|
|
|
|
|
2025-02-18 11:15:48 -06:00
|
|
|
lyte.shell.enable = lib.mkDefault true;
|
|
|
|
nixpkgs = {
|
|
|
|
config.allowUnfree = lib.mkDefault true;
|
|
|
|
overlays = [ self.flakeLib.forSelfOverlay ];
|
|
|
|
};
|
|
|
|
nix = {
|
|
|
|
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
|
|
|
|
# registry = lib.mapAttrs (_: value: { flake = value; }) self.inputs;
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
trusted-users = lib.mkDefault [ "@wheel" ];
|
|
|
|
extra-experimental-features = lib.mkDefault [
|
|
|
|
"nix-command"
|
|
|
|
"flakes"
|
|
|
|
];
|
|
|
|
auto-optimise-store = lib.mkDefault true;
|
2025-02-17 16:09:06 -06:00
|
|
|
};
|
2025-02-18 11:15:48 -06:00
|
|
|
};
|
2025-02-16 10:43:53 -06:00
|
|
|
|
2025-02-18 11:15:48 -06:00
|
|
|
sops = {
|
|
|
|
age = {
|
|
|
|
sshKeyPaths = lib.mkDefault [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
|
|
keyFile = lib.mkDefault "/var/lib/sops-nix/key.txt";
|
|
|
|
generateKey = lib.mkDefault true;
|
2025-02-17 16:09:06 -06:00
|
|
|
};
|
2025-02-18 11:15:48 -06:00
|
|
|
};
|
2025-02-16 10:43:53 -06:00
|
|
|
|
2025-02-18 11:15:48 -06:00
|
|
|
# TODO: for each non-system user on the machine?
|
|
|
|
home-manager = {
|
|
|
|
useGlobalPkgs = lib.mkDefault true;
|
|
|
|
useUserPackages = lib.mkDefault true;
|
|
|
|
backupFileExtension = lib.mkDefault "hm-backup";
|
|
|
|
};
|
2025-02-16 10:43:53 -06:00
|
|
|
|
2025-02-18 11:15:48 -06:00
|
|
|
systemd.services.nix-daemon.environment.TMPDIR = lib.mkDefault "/var/tmp"; # TODO: why did I do this again?
|
|
|
|
boot.tmp.cleanOnBoot = lib.mkDefault true;
|
|
|
|
programs.gnupg.agent.enable = lib.mkDefault true;
|
|
|
|
time.timeZone = lib.mkDefault "America/Chicago";
|
|
|
|
i18n.defaultLocale = lib.mkDefault "en_US.UTF-8";
|
|
|
|
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
2025-02-17 16:09:06 -06:00
|
|
|
|
2025-02-18 11:15:48 -06:00
|
|
|
users.users.root = {
|
|
|
|
openssh.authorizedKeys.keys = lib.mkDefault [ self.outputs.pubkey ];
|
|
|
|
shell = lib.mkIf config.lyte.shell.enable pkgs.fish;
|
|
|
|
};
|
2025-02-17 16:09:06 -06:00
|
|
|
|
2025-02-18 11:15:48 -06:00
|
|
|
services = {
|
|
|
|
openssh = {
|
|
|
|
enable = lib.mkDefault true;
|
2025-02-17 16:09:06 -06:00
|
|
|
|
2025-02-18 11:15:48 -06:00
|
|
|
settings = {
|
|
|
|
PasswordAuthentication = lib.mkDefault false;
|
|
|
|
KbdInteractiveAuthentication = lib.mkDefault false;
|
|
|
|
PermitRootLogin = lib.mkForce "prohibit-password";
|
2025-02-16 10:43:53 -06:00
|
|
|
};
|
|
|
|
|
2025-02-18 11:15:48 -06:00
|
|
|
openFirewall = lib.mkDefault true;
|
2025-02-16 10:43:53 -06:00
|
|
|
|
2025-02-18 11:15:48 -06:00
|
|
|
/*
|
|
|
|
listenAddresses = [
|
|
|
|
{ addr = "0.0.0.0"; port = 22; }
|
2025-02-16 10:43:53 -06:00
|
|
|
];
|
2025-02-18 11:15:48 -06:00
|
|
|
*/
|
2025-02-16 10:43:53 -06:00
|
|
|
};
|
2025-02-18 11:15:48 -06:00
|
|
|
avahi = {
|
|
|
|
enable = lib.mkDefault true;
|
|
|
|
reflector = lib.mkDefault true;
|
|
|
|
openFirewall = lib.mkDefault true;
|
|
|
|
nssmdns4 = lib.mkDefault true;
|
2025-02-16 10:43:53 -06:00
|
|
|
};
|
2025-02-18 11:15:48 -06:00
|
|
|
tailscale = {
|
|
|
|
enable = lib.mkDefault true;
|
|
|
|
useRoutingFeatures = lib.mkDefault "client";
|
2025-02-17 16:09:06 -06:00
|
|
|
};
|
2025-02-18 11:15:48 -06:00
|
|
|
journald.extraConfig = lib.mkDefault "SystemMaxUse=1G";
|
|
|
|
xserver.xkb = {
|
|
|
|
layout = lib.mkDefault "us";
|
|
|
|
|
|
|
|
# have the caps-lock key instead be a ctrl key
|
|
|
|
options = lib.mkDefault "ctrl:nocaps";
|
2025-02-17 16:09:06 -06:00
|
|
|
};
|
2025-02-18 11:15:48 -06:00
|
|
|
smartd.enable = lib.mkDefault true;
|
|
|
|
fwupd.enable = lib.mkDefault true;
|
|
|
|
};
|
|
|
|
|
|
|
|
console = {
|
|
|
|
useXkbConfig = lib.mkDefault true;
|
|
|
|
earlySetup = lib.mkDefault true;
|
|
|
|
|
|
|
|
colors =
|
|
|
|
with self.outputs.style.colors;
|
|
|
|
lib.mkDefault [
|
|
|
|
bg
|
|
|
|
red
|
|
|
|
green
|
|
|
|
orange
|
|
|
|
blue
|
|
|
|
purple
|
|
|
|
yellow
|
|
|
|
fg3
|
|
|
|
fgdim
|
|
|
|
red
|
|
|
|
green
|
|
|
|
orange
|
|
|
|
blue
|
|
|
|
purple
|
|
|
|
yellow
|
|
|
|
fg
|
2025-02-17 16:09:06 -06:00
|
|
|
];
|
2025-02-18 11:15:48 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
networking = {
|
|
|
|
hostName = lib.mkDefault "set-a-hostname-dingus";
|
|
|
|
|
|
|
|
useDHCP = lib.mkDefault true;
|
|
|
|
firewall = {
|
|
|
|
enable = lib.mkDefault true;
|
|
|
|
allowPing = lib.mkDefault true;
|
2025-02-17 16:09:06 -06:00
|
|
|
};
|
2025-02-18 11:15:48 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
users.groups.daniel = { };
|
|
|
|
users.users.daniel = {
|
|
|
|
isNormalUser = true;
|
|
|
|
home = "/home/daniel/.home";
|
|
|
|
# TODO: chown /home/daniel
|
|
|
|
description = "Daniel Flanagan";
|
|
|
|
createHome = true;
|
|
|
|
openssh.authorizedKeys.keys = [ self.outputs.pubkey ];
|
|
|
|
group = "daniel";
|
|
|
|
shell = lib.mkIf config.lyte.shell.enable pkgs.fish;
|
|
|
|
extraGroups = [
|
|
|
|
"users"
|
|
|
|
"wheel"
|
|
|
|
"video"
|
|
|
|
"dialout"
|
|
|
|
"uucp"
|
2025-02-18 11:55:54 -06:00
|
|
|
"power"
|
2025-02-18 11:15:48 -06:00
|
|
|
"kvm"
|
|
|
|
];
|
|
|
|
packages = [ ];
|
|
|
|
};
|
|
|
|
home-manager.users.daniel = {
|
|
|
|
home = {
|
|
|
|
stateVersion = lib.mkDefault config.system.stateVersion;
|
|
|
|
file.".face" = {
|
|
|
|
enable = config.home-manager.users.daniel.lyte.desktop.enable;
|
|
|
|
source = builtins.fetchurl {
|
|
|
|
url = "https://lyte.dev/img/avatar3-square-512.png";
|
|
|
|
sha256 = "sha256:15zwbwisrc01m7ad684rsyq19wl4s33ry9xmgzmi88k1myxhs93x";
|
|
|
|
};
|
|
|
|
};
|
2025-02-16 10:43:53 -06:00
|
|
|
};
|
2025-02-18 11:15:48 -06:00
|
|
|
imports = with self.outputs.homeManagerModules; [
|
|
|
|
{
|
|
|
|
_module.args.fullName = config.users.users.daniel.description;
|
|
|
|
}
|
|
|
|
default
|
|
|
|
daniel
|
|
|
|
];
|
2025-02-16 10:43:53 -06:00
|
|
|
};
|
2025-02-18 11:15:48 -06:00
|
|
|
};
|
2025-02-16 10:43:53 -06:00
|
|
|
}
|