Files
dotfiles/systems/jeeves/default.nix
T
Richie 4c1ec18794 adding root_pool/nix_build to all zfs boxes
this fixes issues with file how the test intract with zfs file systems
2026-09-11 11:41:54 -04:00

46 lines
1.0 KiB
Nix

{ inputs, lib, ... }:
let
vars = import ./vars.nix;
in
{
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/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";
}