Removed faulty module

This commit is contained in:
jeirmeister 2025-08-01 11:27:49 -07:00
parent 0c8fcdc270
commit 458b5cfb09

View file

@ -19,7 +19,6 @@
./modules/btcpay
];
in {
# Top-level nixosConfigurations for proper nixos-rebuild support
nixosConfigurations.btc-pay-server = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = modules ++ [
@ -27,11 +26,9 @@
boot.isContainer = true;
system.stateVersion = "25.05";
services.btcpay-full.enable = true;
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAaV7JtUWkWrjo5FfCcpTCCEY/OJ+T1mJOLbe4avg0XH sysadmin@skrybit.io"
];
services.openssh = {
enable = true;
settings = {
@ -40,11 +37,9 @@
};
};
})
self.nixosModules.btcpay-server
];
};
# devShells and other per-system outputs, if desired
devShells = flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };