1
1
Fork 0

Compare commits

..

6 Commits

5 changed files with 15 additions and 16 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
linode-nixos.qcow2
result

3
.gitmodules vendored
View File

@ -1,3 +0,0 @@
[submodule "nixos-apps/seal-blog"]
path = nixos-apps/seal-blog
url = gitea@git.ewanick.com:bill/seal-blog.git

View File

@ -1,3 +1,5 @@
{ pkgs, ... }:
let let
PROJECT_ROOT = builtins.toString ./.; PROJECT_ROOT = builtins.toString ./.;
in in
@ -26,15 +28,14 @@ in
# when in doubt, clear away the certs with # when in doubt, clear away the certs with
# sudo rm -rf /var/lib/acme/ # sudo rm -rf /var/lib/acme/
security.acme.acceptTerms = true; security.acme.acceptTerms = true;
security.acme.email = "admin@cutesealfanpage.love"; security.acme.defaults.email = "admin@cutesealfanpage.love";
# 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";
# services.cron = { services.cron = {
# enable = true; enable = true;
# systemCronJobs = [ systemCronJobs = [
# # "12 12 * * * alice . /etc/profile; /home/alice/seal-blog/devops/newSealPost.sh > /home/alice/logs/backup.log 2>&1" "12 12 * * * alice . /etc/profile; ${pkgs.newSealPost} > /home/alice/logs/backup.log 2>&1"
# # "* * * * * alice . /etc/profile; /home/alice/seal-blog/devops/newSealPost.sh" ];
# ]; };
# };
} }

@ -1 +0,0 @@
Subproject commit f5accae1dbc4abfd6694c57ec93ba49982ad3272

View File

@ -11,13 +11,12 @@
./hardware-configuration.nix ./hardware-configuration.nix
# Applications that run on this server # Applications that run on this server
../nixos-apps/ewanick.com.nix
../nixos-apps/git.ewanick.com.nix
../nixos-apps/crueltysquad.com.nix ../nixos-apps/crueltysquad.com.nix
../nixos-apps/jitsi.crueltysquad.com.nix
../nixos-apps/cutesealfanpage.love.nix ../nixos-apps/cutesealfanpage.love.nix
../nixos-apps/ewanick.com.nix
../nixos-apps/fancytypist.com.nix ../nixos-apps/fancytypist.com.nix
# ../nixos-apps/seal-blog ../nixos-apps/git.ewanick.com.nix
../nixos-apps/jitsi.crueltysquad.com.nix
]; ];
# Use the GRUB 2 boot loader. # Use the GRUB 2 boot loader.
@ -69,6 +68,7 @@
packages = with pkgs; [ packages = with pkgs; [
tldr tldr
]; ];
hashedPassword = "$y$j9T$7AufeqRXQaD9CxeBmwBUt0$.qNf/QdO5BGc0peHvHzDQqs1B48D0pYw9PhIDzcYAK8";
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGzXqcOu6/EjS60Ke55w4hj//lY6u3S1DYPoSd7yjdR3 alice@foobar" ]; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGzXqcOu6/EjS60Ke55w4hj//lY6u3S1DYPoSd7yjdR3 alice@foobar" ];
}; };