summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2024-02-15 19:45:50 +0100
committerstuebinm2024-02-15 19:45:50 +0100
commit3d9f14fca4ac662cb7b6285bf9a05173ab51caff (patch)
treedd91e687da4af1f5e2d9505f77e8a50adb9fc2fd
parent5461fc6f762952d58ea0c2ede321e301aa011e3f (diff)
modules/bookwyrm: expose in flake.nix
-rw-r--r--flake.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index de1169f..73e8c89 100644
--- a/flake.nix
+++ b/flake.nix
@@ -146,6 +146,9 @@
tests.bookwyrm = nixpkgs.nixosTest ./tests/bookwyrm.nix;
};
- nixosModules = { glitchtip = import ./modules/glitchtip.nix; };
+ nixosModules = {
+ glitchtip = import ./modules/glitchtip.nix;
+ bookwyrm = import ./modules/bookwyrm.nix;
+ };
};
}