Nixos-Configuration/configurations/nixos/tofu/configuration.nix
2025-06-14 06:30:53 -04:00

18 lines
353 B
Nix

{ config, pkgs, ... }:
{
services = {
tty-ips.enable = true;
};
networking = {
yggdrasil = {
enable = true;
AllowedPublicKeys = [
"d0e265fcf663451ae9bc048dc1297749819ce9d48042a986f2866c15a779a074"
];
};
hostName = "smultiboi";
};
environment.systemPackages = [
];
system.stateVersion = "25.05";
}