From a80de99175a7353450a88ad5dca24da5b5a8ef89 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sun, 12 Apr 2026 09:45:14 -0400 Subject: [PATCH] adding math to bob --- systems/bob/default.nix | 1 + users/math/systems/bob.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 users/math/systems/bob.nix diff --git a/systems/bob/default.nix b/systems/bob/default.nix index 0fbdfac..5724628 100644 --- a/systems/bob/default.nix +++ b/systems/bob/default.nix @@ -2,6 +2,7 @@ { imports = [ "${inputs.self}/users/richie" + "${inputs.self}/users/math" "${inputs.self}/common/global" "${inputs.self}/common/optional/docker.nix" "${inputs.self}/common/optional/scanner.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 + ]; +}