Compare commits
No commits in common. "f8cbde73b14404681db5bb82939b6624c266eb98" and "eaa03cc7e97558abda2b7565e418e88c91b3bb8f" have entirely different histories.
f8cbde73b1
...
eaa03cc7e9
26
flake.nix
26
flake.nix
|
@ -15,27 +15,21 @@
|
||||||
# nixpkgs.follows = "emanote/nixpkgs";
|
# nixpkgs.follows = "emanote/nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs = inputs@{ self, nixpkgs, emanote, ... }:
|
||||||
inputs@{
|
|
||||||
self,
|
|
||||||
nixpkgs,
|
|
||||||
emanote,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
{
|
||||||
nixosConfigurations.linode-nixos = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.linode-nixos =
|
||||||
specialArgs = { inherit inputs emanote; };
|
nixpkgs.lib.nixosSystem {
|
||||||
modules = [
|
specialArgs = { inherit inputs emanote; };
|
||||||
./server-config/configuration.nix
|
modules = [
|
||||||
|
./server-config/configuration.nix
|
||||||
|
|
||||||
./nixos-apps
|
./nixos-apps
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
hydraJobs = {
|
hydraJobs = {
|
||||||
inherit (self)
|
inherit (self)
|
||||||
nixosConfigurations
|
nixosConfigurations;
|
||||||
;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
./ewanick.com.nix
|
./ewanick.com.nix
|
||||||
./git.ewanick.com.nix
|
./git.ewanick.com.nix
|
||||||
# ./paperless.ewanick.com.nix
|
./paperless.ewanick.com.nix
|
||||||
|
|
||||||
./fancytypist.com.nix
|
./fancytypist.com.nix
|
||||||
|
|
||||||
|
@ -21,8 +21,5 @@
|
||||||
# uncomment this to use the staging server
|
# uncomment this to use the staging server
|
||||||
# security.acme.server = "https://acme-staging-v02.api.letsencrypt.org/directory";
|
# security.acme.server = "https://acme-staging-v02.api.letsencrypt.org/directory";
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||||
80
|
|
||||||
443
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
# Currently disabled, having issues starting
|
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
let
|
let
|
||||||
baseUrl = "paperless.ewanick.com";
|
baseUrl = "paperless.ewanick.com";
|
||||||
|
|
Loading…
Reference in New Issue