From 1fd2ccdf0269cadbaf7eaa2f8ae46744413fee56 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Tue, 19 May 2026 07:51:39 -0500 Subject: [PATCH] task | first pass at moving things to modules dir --- modules/default.nix | 6 ++++++ {hosts/workstation => modules}/ollama.nix | 0 2 files changed, 6 insertions(+) create mode 100644 modules/default.nix rename {hosts/workstation => modules}/ollama.nix (100%) diff --git a/modules/default.nix b/modules/default.nix new file mode 100644 index 0000000..6bfd709 --- /dev/null +++ b/modules/default.nix @@ -0,0 +1,6 @@ +{ inputs, outputs, lib, config, pkgs, ... }: { + imports = [ + # ./beszel-agent.nix + ./ollama.nix + ]; +} diff --git a/hosts/workstation/ollama.nix b/modules/ollama.nix similarity index 100% rename from hosts/workstation/ollama.nix rename to modules/ollama.nix