Compare commits
6 Commits
019d80bcb1
...
36dc131440
Author | SHA1 | Date |
---|---|---|
Bill Ewanick | 36dc131440 | |
Bill Ewanick | ed8a489eab | |
Bill Ewanick | bd0138284a | |
Bill Ewanick | 7d6dd9f09b | |
Bill Ewanick | 91c071f19a | |
Bill Ewanick | 65aed8e81d |
|
@ -0,0 +1,2 @@
|
||||||
|
linode-nixos.qcow2
|
||||||
|
result
|
|
@ -1,3 +0,0 @@
|
||||||
[submodule "nixos-apps/seal-blog"]
|
|
||||||
path = nixos-apps/seal-blog
|
|
||||||
url = gitea@git.ewanick.com:bill/seal-blog.git
|
|
|
@ -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
|
|
|
@ -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" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue