Initial Commit

This commit is contained in:
2024-10-02 00:54:05 -05:00
commit 46ebfc5cb6
45 changed files with 4120 additions and 0 deletions

29
services/flake.nix Normal file
View File

@@ -0,0 +1,29 @@
{
description = "Nathan user service config";
inputs = {
mpdris.url = "./mpdris";
ollama.url = "./ollama";
};
outputs = { self, ... }@inputs: {
module = { config, lib, pkgs, ... }: {
imports = [
inputs.ollama.module
];
};
hmModule = { config, lib, pkgs, ... }: {
imports = [
inputs.mpdris.hmModule
];
};
};
}