Initial Commit
This commit is contained in:
29
services/flake.nix
Normal file
29
services/flake.nix
Normal 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
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user