format && add nix-serve for caching
Some checks failed
/ perform flake analysis (push) Successful in 37s
/ build hive configuration (push) Failing after 8m50s

This commit is contained in:
2026-01-07 15:29:28 +01:00
parent 13b08066ce
commit 56ffeaf5a0
26 changed files with 296 additions and 149 deletions

View File

@@ -1,11 +1,12 @@
{inputs, ...}:
{ inputs, ... }:
let
striped-back = inputs.striped-back;
in {
in
{
imports = [
striped-back.nixosModules.default
];
services.striped-back-api = {
enable = true;
@@ -17,7 +18,7 @@ in {
socket.enable = true;
settings.django = {
allowed-hosts = ["striped-api.shobu.fr"];
allowed-hosts = [ "striped-api.shobu.fr" ];
debug = true;
databases = {
default = {

View File

@@ -1,4 +1,5 @@
{striped-back, striped-front, ...}:{
{ striped-back, striped-front, ... }:
{
imports = [
./back.nix
];