From 32b17718678ac5c3b771bb595a3de13b8bbb4007 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 17 Oct 2023 11:01:18 -0300 Subject: [PATCH] ghost: minor update --- hosts/ghost.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/hosts/ghost.nix b/hosts/ghost.nix index ff39490..99c665b 100644 --- a/hosts/ghost.nix +++ b/hosts/ghost.nix @@ -9,12 +9,6 @@ # Use more aggressive compression then the default. virtualisation.digitalOceanImage.compressionMethod = "bzip2"; - # Headless - don't start a tty on the serial consoles. - systemd.services."serial-getty@ttyS0".enable = false; - systemd.services."serial-getty@hvc0".enable = false; - systemd.services."getty@tty1".enable = false; - systemd.services."autovt@".enable = false; - # Enable networking networking.networkmanager.enable = true; @@ -86,6 +80,10 @@ host = "blog.lelgenio.xyz"; admin.name = "lelgenio"; admin.initialPasswordFile = config.age.secrets.ghost-writefreely.path; + settings.app = { + site_name = "Leo's blog"; + single_user = true; + }; }; services.nginx.virtualHosts.${config.services.nextcloud.hostName} = {