1
1
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Bill Ewanick f8cbde73b1 Formatting 2025-07-20 16:42:36 -04:00
Bill Ewanick 5c9eabcebd Disable paperless 2025-07-20 16:41:43 -04:00
3 changed files with 22 additions and 12 deletions

View File

@ -15,21 +15,27 @@
# nixpkgs.follows = "emanote/nixpkgs";
};
outputs = inputs@{ self, nixpkgs, emanote, ... }:
outputs =
inputs@{
self,
nixpkgs,
emanote,
...
}:
{
nixosConfigurations.linode-nixos =
nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs emanote; };
modules = [
./server-config/configuration.nix
nixosConfigurations.linode-nixos = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs emanote; };
modules = [
./server-config/configuration.nix
./nixos-apps
];
};
./nixos-apps
];
};
hydraJobs = {
inherit (self)
nixosConfigurations;
nixosConfigurations
;
};
};
}

View File

@ -7,7 +7,7 @@
./ewanick.com.nix
./git.ewanick.com.nix
./paperless.ewanick.com.nix
# ./paperless.ewanick.com.nix
./fancytypist.com.nix
@ -21,5 +21,8 @@
# uncomment this to use the staging server
# security.acme.server = "https://acme-staging-v02.api.letsencrypt.org/directory";
networking.firewall.allowedTCPPorts = [ 80 443 ];
networking.firewall.allowedTCPPorts = [
80
443
];
}

View File

@ -1,3 +1,4 @@
# Currently disabled, having issues starting
{ pkgs, ... }:
let
baseUrl = "paperless.ewanick.com";