Files
dotfiles/systems/jeeves/default.nix
T
Richie e92cd314e0
treefmt / nix fmt (pull_request) Successful in 3s
pytest / pytest (pull_request) Successful in 32s
build_systems / build-portal-1 (pull_request) Successful in 35s
test ebook search / test-ebook-search (pull_request) Successful in 36s
build_systems / build-brain (pull_request) Successful in 45s
build_systems / build-bob (pull_request) Successful in 54s
build_systems / build-jeeves (pull_request) Successful in 1m7s
build_systems / build-rhapsody-in-green (pull_request) Successful in 1m8s
adding gccarch-x86-64-v2 and gccarch-x86-64-v3 suport to all boxes This will be moved to athe ve file later
2026-09-11 10:45:44 -04:00

47 lines
1.0 KiB
Nix

{ inputs, lib, ... }:
let
vars = import ./vars.nix;
in
{
imports = [
"${inputs.self}/users/dov"
"${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/ssh_decrypt.nix"
"${inputs.self}/common/optional/syncthing_base.nix"
"${inputs.self}/common/optional/tailscale.nix"
"${inputs.self}/common/optional/update.nix"
"${inputs.self}/common/optional/zfs"
./monitoring
./docker
./services
./hardware.nix
./networking
./programs.nix
./runners
./syncthing.nix
];
services = {
openssh.ports = [ 629 ];
smartd.enable = true;
snapshot_manager = {
path = ./snapshot_config.toml;
EnvironmentFile = "${vars.secrets}/services/snapshot_manager";
};
};
users.groups = {
nornsight = { };
nornsight-admin = { };
};
system.stateVersion = "24.05";
}