From 757e8beb817dfed0c46e27e4e1645d43ea032b95 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Mon, 13 Apr 2026 18:57:37 -0400 Subject: [PATCH 1/2] made bob a server --- systems/bob/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/systems/bob/default.nix b/systems/bob/default.nix index c4cf75c..b4267f5 100644 --- a/systems/bob/default.nix +++ b/systems/bob/default.nix @@ -1,9 +1,9 @@ -{ inputs, ... }: +{ inputs, pkgs, ... }: { imports = [ "${inputs.self}/users/richie" + "${inputs.self}/users/math" "${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" @@ -19,6 +19,11 @@ ./llms.nix ]; + boot = { + kernelPackages = pkgs.linuxPackages_6_18; + zfs.package = pkgs.zfs_2_4; + }; + networking = { hostName = "bob"; hostId = "7c678a41"; From b1a57667063297cad16adc4f59a0e6ae48dc42e6 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Mon, 13 Apr 2026 19:02:34 -0400 Subject: [PATCH 2/2] added math the bob --- users/math/systems/bob.nix | 5 +++++ users/richie/systems/bob.nix | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 users/math/systems/bob.nix diff --git a/users/math/systems/bob.nix b/users/math/systems/bob.nix new file mode 100644 index 0000000..6bbef61 --- /dev/null +++ b/users/math/systems/bob.nix @@ -0,0 +1,5 @@ +{ + imports = [ + ../home/global.nix + ]; +} 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 ]; }