FIX: Flake and Module for NixOS deployment (#3363)

This commit is contained in:
PatMulligan
2025-09-26 07:47:02 +02:00
committed by GitHub
parent 4f9a5090c2
commit 210b8a7c18
3 changed files with 223 additions and 8 deletions
+2 -1
View File
@@ -139,9 +139,10 @@
replaceVars = prev.replaceVars or (path: vars: prev.substituteAll ({ src = path; } // vars));
};
# System-specific nixos modules to avoid circular dependency
nixosModules.default = { pkgs, lib, config, ... }: {
imports = [ "${./nix/modules/lnbits-service.nix}" ];
nixpkgs.overlays = [ self.overlays.default ];
nixpkgs.overlays = [ self.overlays.${system}.default ];
};
checks = { };