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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 223 additions and 8 deletions

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 = { };