minor config cleanup

This commit is contained in:
Jermeiah S 2025-06-14 06:30:53 -04:00
parent 763ee4a89b
commit c900742f44
No known key found for this signature in database

View file

@ -1,19 +1,18 @@
{ config, pkgs, ... }:
{
services.tty-ips.enable = true;
networking.yggdrasil = {
enable = true;
AllowedPublicKeys = [
"d0e265fcf663451ae9bc048dc1297749819ce9d48042a986f2866c15a779a074"
];
services = {
tty-ips.enable = true;
};
networking = {
yggdrasil = {
enable = true;
AllowedPublicKeys = [
"d0e265fcf663451ae9bc048dc1297749819ce9d48042a986f2866c15a779a074"
];
};
hostName = "smultiboi";
};
nixpkgs.hostPlatform = "x86_64-linux";
networking.hostName = "smultiboi";
environment.systemPackages = [
# pkgs.otf
];
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = "25.05";
}