1
1
Fork 0

Compare commits

..

No commits in common. "76c5ed8988e87290acd1b02b63133ea9282f9ce9" and "92abe8b6cd85422d2533367cf6a7b24bb89d3d08" have entirely different histories.

2 changed files with 9 additions and 15 deletions

View File

@ -1,6 +1,6 @@
{
description = "System flake for Linode NixOS server";
# Want to convert this to Flake Parts flake so I can use their special features
nixConfig = {
extra-substituters = "https://srid.cachix.org";
extra-trusted-public-keys = "srid.cachix.org-1:3clnql5gjbJNEvhA/WQp7nrZlBptwpXnUk6JAv8aB2M=";

View File

@ -35,12 +35,12 @@ in
'';
};
"fancytypist.dev" = {
serverAliases = [ "www.fancytypist.dev" ];
extraConfig = ''
reverse_proxy ${HOST}:${toString PORT}
'';
};
# "fancytypist.dev" = {
# serverAliases = [ "www.fancytypist.dev" ];
# extraConfig = ''
# reverse_proxy ${HOST}:${toString PORT}
# '';
# };
};
};
@ -48,10 +48,7 @@ in
fancyTypistDotDev-site = {
enable = false;
description = "The Haskell Servant executable server that hosts my FancyTypist.dev site.";
path = with pkgs; [
nix
git
];
path = with pkgs; [ nix git ];
script = ''
cd ${PROJECT_ROOT}
nix run .#fancyTypistDotDev-site
@ -61,10 +58,7 @@ in
osdsFancyTypistSubdomain-site = {
enable = true;
description = "Emanote site running the OSDS content.";
path = with pkgs; [
nix
git
];
path = with pkgs; [ nix git ];
script = ''
cd ${PROJECT_ROOT}
nix run .#osdsFancyTypistSubdomain-site