From c900742f4497564c4b8f4affa8cc023b0f073170 Mon Sep 17 00:00:00 2001 From: Jermeiah S Date: Sat, 14 Jun 2025 06:30:53 -0400 Subject: [PATCH] minor config cleanup --- configurations/nixos/tofu/configuration.nix | 23 ++++++++++----------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/configurations/nixos/tofu/configuration.nix b/configurations/nixos/tofu/configuration.nix index 07354af..9cffaf7 100644 --- a/configurations/nixos/tofu/configuration.nix +++ b/configurations/nixos/tofu/configuration.nix @@ -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"; }