This commit is contained in:
nora 2024-08-01 15:35:53 +02:00
parent 633f26d24d
commit 1e1fd95f07
16 changed files with 42 additions and 26 deletions

View file

@ -4,4 +4,6 @@
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = { device = "/dev/sda3"; fsType = "ext4"; };
deployment.tags = [ "contabo" ];
}

View file

@ -1,4 +1,4 @@
{ pkgs, config, ... }: {
{ pkgs, config, name, ... }: {
networking.firewall.allowedTCPPorts = [
443
];
@ -14,9 +14,14 @@
file_server
}
noratrieb.dev {
root * ${./nora}
file_server
${
if name == "vps1" then
''
noratrieb.dev {
root * ${./nora}
file_server
}
'' else ""
}
''
);

View file

@ -12,13 +12,7 @@
<h1>nora's website</h1>
<div>
<p>hey, I'm nora (she/her?)! i think. maybe. who knows, really</p>
<p>this website is work in progress. just like me fr.</p>
<p>all of this is very complicated.</p>
<p>it's very empty for now.</p>
<p>i hope it will be fuller in the future. worth visiting. for now, it just exists.</p>
<p>i expect to visit it quite often.</p>
<p>not that i expect anyone to want to do that, but this site is not exactly intended for sharing.</p>
<p>..for now. in the future it will be. maybe.</p>
<p>this is here because i still havent managed move over <a href="https://nilstrieb.dev">nilstrieb.dev</a>, lol.</p>
<img width="100%" src="nora.png">
</div>
</div>

View file

@ -44,4 +44,6 @@ in
wgSettings.peers;
};
};
deployment.tags = [ "wg-mesh" ];
}