Files
dotfiles/systems/bob/default.nix
T
Richie d986713a3e
treefmt / nix fmt (pull_request) Successful in 6s
pytest / pytest (pull_request) Successful in 30s
test ebook search / test-ebook-search (pull_request) Successful in 36s
build_systems / build-brain (pull_request) Failing after 2h7m30s
build_systems / build-jeeves (pull_request) Failing after 2h51m28s
build_systems / build-bob (pull_request) Failing after 3h0m2s
build_systems / build-rhapsody-in-green (pull_request) Failing after 3h0m2s
testing x86_v3
2026-09-01 21:18:02 -04:00

51 lines
1.2 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/monitoring-agent.nix"
"${inputs.self}/common/optional/nvidia.nix"
"${inputs.self}/common/optional/scanner.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/tailscale.nix"
"${inputs.self}/common/optional/update.nix"
"${inputs.self}/common/optional/x86-64-v3.nix"
"${inputs.self}/common/optional/zfs"
./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
8001
8002
];
};
networkmanager.enable = true;
};
services = {
openssh.ports = [ 262 ];
snapshot_manager.path = ./snapshot_config.toml;
};
system.stateVersion = "24.05";
}