Skip to content

Commit 8540fb5

Browse files
committed
refactor: use unify framework
1 parent 63a849a commit 8540fb5

Some content is hidden

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

87 files changed

+3956
-2543
lines changed

flake.lock

Lines changed: 59 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@
5353
url = "github:nix-community/disko";
5454
inputs.nixpkgs.follows = "nixpkgs";
5555
};
56+
unify = {
57+
url = "git+https://codeberg.org/quasigod/unify";
58+
inputs.nixpkgs.follows = "nixpkgs";
59+
inputs.home-manager.follows = "home-manager";
60+
};
5661
};
5762

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

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/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 = {

modules/base/boot/kernel.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
{ pkgs, ... }:
44
{
55
boot.kernelPackages = pkgs.linuxPackages_latest;

modules/base/command-not-found.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
flake.modules = {
3-
nixos.base = {
2+
unify.modules.base = {
3+
nixos = {
44
programs.command-not-found.enable = false;
55
};
66

7-
homeManager.base = {
7+
home = {
88
programs.command-not-found.enable = false;
99
};
1010
};

0 commit comments

Comments
 (0)