Compare commits
2 Commits
eaa03cc7e9
...
f8cbde73b1
Author | SHA1 | Date |
---|---|---|
|
f8cbde73b1 | |
|
5c9eabcebd |
26
flake.nix
26
flake.nix
|
@ -15,21 +15,27 @@
|
||||||
# nixpkgs.follows = "emanote/nixpkgs";
|
# nixpkgs.follows = "emanote/nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs@{ self, nixpkgs, emanote, ... }:
|
outputs =
|
||||||
|
inputs@{
|
||||||
|
self,
|
||||||
|
nixpkgs,
|
||||||
|
emanote,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
nixosConfigurations.linode-nixos =
|
nixosConfigurations.linode-nixos = nixpkgs.lib.nixosSystem {
|
||||||
nixpkgs.lib.nixosSystem {
|
specialArgs = { inherit inputs emanote; };
|
||||||
specialArgs = { inherit inputs emanote; };
|
modules = [
|
||||||
modules = [
|
./server-config/configuration.nix
|
||||||
./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,5 +21,8 @@
|
||||||
# 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 = [ 80 443 ];
|
networking.firewall.allowedTCPPorts = [
|
||||||
|
80
|
||||||
|
443
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# Currently disabled, having issues starting
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
let
|
let
|
||||||
baseUrl = "paperless.ewanick.com";
|
baseUrl = "paperless.ewanick.com";
|
||||||
|
|
Loading…
Reference in New Issue