Skip to content

Commit a944c39

Browse files
committed
refactor: use unify framework
1 parent 5c8717f commit a944c39

File tree

106 files changed

+3466
-2076
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+3466
-2076
lines changed

flake.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@
4848
url = "sourcehut:~rycee/lazy-apps";
4949
inputs.nixpkgs.follows = "nixpkgs";
5050
};
51+
52+
unify = {
53+
url = "git+https://codeberg.org/quasigod/unify";
54+
inputs.nixpkgs.follows = "nixpkgs";
55+
inputs.home-manager.follows = "home-manager";
56+
};
5157
};
5258

5359
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);

modules/ai/docling-serve.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
flake.modules.nixos.ai =
2+
unify.modules.ai.nixos =
33
{ pkgs, ... }:
44
{
55
services = {

modules/ai/litellm/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
flake.modules.nixos.ai = {
2+
unify.modules.ai.nixos = {
33
services = {
44
litellm = {
55
enable = true;

modules/ai/ollama.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
flake.modules.nixos.ai = {
2+
unify.modules.ai.nixos = {
33
services = {
44
ollama = {
55
enable = true;

modules/ai/open-webui.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
];
66
};
77

8-
flake.modules.nixos.ai = {
8+
unify.modules.ai.nixos = {
99
services = {
1010
open-webui = {
1111
enable = true;

modules/ai/searx.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
flake.modules.nixos.ai = {
2+
unify.modules.ai.nixos = {
33
services = {
44
searx = {
55
enable = true;

modules/ai/tika/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
flake.modules.nixos.ai = {
2+
unify.modules.ai.nixos = {
33
services = {
44
tika = {
55
enable = true;

modules/base/accessibility/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
flake.modules.nixos.base = {
2+
unify.modules.base.nixos = {
33
services.orca.enable = false;
44
services.speechd.enable = false;
55
};

modules/base/admin/nh.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
inputs.make-shell.flakeModules.default
88
];
99

10-
flake.modules.nixos.base = {
10+
unify.modules.base.nixos = {
1111
programs = {
1212
nh = {
1313
enable = true;

modules/base/boot/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
flake.modules.nixos.base.boot = {
2+
unify.modules.base.nixos.boot = {
33
initrd.systemd.enable = true;
44

55
tmp = {

0 commit comments

Comments
 (0)