f908f969d3
treefmt / nix fmt (pull_request) Successful in 7s
pytest / pytest (pull_request) Successful in 35s
build_systems / build-brain (pull_request) Successful in 47s
build_systems / build-bob (pull_request) Successful in 50s
build_systems / build-leviathan (pull_request) Successful in 56s
build_systems / build-rhapsody-in-green (pull_request) Successful in 1m1s
build_systems / build-jeeves (pull_request) Successful in 2m31s
treefmt / nix fmt (push) Successful in 6s
pytest / pytest (push) Successful in 25s
build_systems / build-brain (push) Successful in 31s
build_systems / build-bob (push) Successful in 34s
build_systems / build-leviathan (push) Successful in 42s
build_systems / build-rhapsody-in-green (push) Successful in 45s
build_systems / build-jeeves (push) Successful in 2m13s
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
"${inputs.self}/users/math"
|
|
"${inputs.self}/users/richie"
|
|
"${inputs.self}/users/steve"
|
|
"${inputs.self}/common/global"
|
|
"${inputs.self}/common/optional/docker.nix"
|
|
"${inputs.self}/common/optional/scanner.nix"
|
|
"${inputs.self}/common/optional/monitoring-agent.nix"
|
|
"${inputs.self}/common/optional/steam.nix"
|
|
"${inputs.self}/common/optional/syncthing_base.nix"
|
|
"${inputs.self}/common/optional/systemd-boot.nix"
|
|
"${inputs.self}/common/optional/update.nix"
|
|
"${inputs.self}/common/optional/yubikey.nix"
|
|
"${inputs.self}/common/optional/zerotier.nix"
|
|
"${inputs.self}/common/optional/nvidia.nix"
|
|
./hardware.nix
|
|
./syncthing.nix
|
|
./llms.nix
|
|
];
|
|
|
|
boot = {
|
|
kernelPackages = pkgs.linuxPackages_6_18;
|
|
zfs.package = pkgs.zfs_2_4;
|
|
};
|
|
|
|
networking = {
|
|
hostName = "bob";
|
|
hostId = "7c678a41";
|
|
firewall = {
|
|
enable = true;
|
|
allowedTCPPorts = [
|
|
8000
|
|
];
|
|
};
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
services = {
|
|
openssh.ports = [ 262 ];
|
|
|
|
snapshot_manager.path = ./snapshot_config.toml;
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|