From c150fc86123d77caff43a21103d39d9e26dc84e8 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Wed, 8 Apr 2026 00:18:17 -0400 Subject: [PATCH] converting bob to a server --- systems/bob/default.nix | 9 ++++++--- users/richie/systems/bob.nix | 1 - 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/systems/bob/default.nix b/systems/bob/default.nix index c4cf75c..0fbdfac 100644 --- a/systems/bob/default.nix +++ b/systems/bob/default.nix @@ -1,9 +1,8 @@ -{ inputs, ... }: +{ inputs, pkgs, ... }: { imports = [ "${inputs.self}/users/richie" "${inputs.self}/common/global" - "${inputs.self}/common/optional/desktop.nix" "${inputs.self}/common/optional/docker.nix" "${inputs.self}/common/optional/scanner.nix" "${inputs.self}/common/optional/steam.nix" @@ -12,13 +11,17 @@ "${inputs.self}/common/optional/update.nix" "${inputs.self}/common/optional/yubikey.nix" "${inputs.self}/common/optional/zerotier.nix" - "${inputs.self}/common/optional/brain_substituter.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"; diff --git a/users/richie/systems/bob.nix b/users/richie/systems/bob.nix index b1d9590..6bbef61 100644 --- a/users/richie/systems/bob.nix +++ b/users/richie/systems/bob.nix @@ -1,6 +1,5 @@ { imports = [ ../home/global.nix - ../home/gui ]; }