1
1
Fork 0

Compare commits

..

No commits in common. "f8cbde73b14404681db5bb82939b6624c266eb98" and "eaa03cc7e97558abda2b7565e418e88c91b3bb8f" have entirely different histories.

3 changed files with 12 additions and 22 deletions

View File

@ -15,15 +15,10 @@
# nixpkgs.follows = "emanote/nixpkgs";
};
outputs =
inputs@{
self,
nixpkgs,
emanote,
...
}:
outputs = inputs@{ self, nixpkgs, emanote, ... }:
{
nixosConfigurations.linode-nixos = nixpkgs.lib.nixosSystem {
nixosConfigurations.linode-nixos =
nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs emanote; };
modules = [
./server-config/configuration.nix
@ -34,8 +29,7 @@
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,8 +21,5 @@
# 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,4 +1,3 @@
# Currently disabled, having issues starting
{ pkgs, ... }:
let
baseUrl = "paperless.ewanick.com";