tehanu: init

This commit is contained in:
Katherina Walshe-Grey 2025-05-22 03:10:37 +01:00
parent b64d34e9c4
commit f1718e5c3b
4 changed files with 66 additions and 0 deletions

20
hosts/tehanu/default.nix Normal file
View file

@ -0,0 +1,20 @@
{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./networking.nix
];
nixpkgs.hostPlatform = "aarch64-linux";
networking.hostName = "tehanu";
networking.hostId = "8e1185ab";
networking.domain = "birdsong.network";
fountain.users.qenya.enable = true;
fountain.admins = [ "qenya" ];
qenya.base-server.enable = true;
system.stateVersion = "23.11";
}