This commit is contained in:
Kat Inskip 2023-08-20 14:08:11 -07:00
parent efa2f4a5e8
commit 0686cac613
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
4 changed files with 21 additions and 4 deletions

View file

@ -23,6 +23,7 @@
"editor.formatOnSave" = true;
"editor.formatOnType" = false;
};
"files.eol" = "\n";
"alejandra.program" = "${pkgs.alejandra}/bin/alejandra";
"editor.fontFamily" = ''"Iosevka", "Font Awesome 6 Free", "Font Awesome 6 Brands"'';
"editor.fontLigatures" = true;

View file

@ -0,0 +1,9 @@
_: {
services.monica = {
enable = true;
appURL = "https://monica.gensokyo.zone";
nginx = {
serverName = "monica.gensokyo.zone";
};
};
}

View file

@ -1,13 +1,12 @@
_: let
<<<<<<< HEAD
hostConfig = {
lib,
tree,
inputs,
...
}: let
hostConfig = {lib, tree, modulesPath, inputs, pkgs, ...}: let
inherit (lib.modules) mkForce mkAfter;
}:
let
inherit (lib.modules) mkForce;
in {
imports = with tree; [
inputs.wsl.nixosModules.wsl

8
tf/gensokyo-monica.tf Normal file
View file

@ -0,0 +1,8 @@
resource "cloudflare_record" "monica" {
name = "monica"
proxied = true
ttl = 1
type = "CNAME"
value = "yukari.gensokyo.zone"
zone_id = local.zone_ids.gensokyo
}