From 84ce300e0e6037d592bd6842b13a76fc16d397b6 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 15 Jul 2024 07:54:26 +0200 Subject: [PATCH] fix: move hostname to host itself --- modules/core/default.nix | 19 ++++++++++--------- modules/core/network.nix | 7 +++---- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/modules/core/default.nix b/modules/core/default.nix index bdb2456..b7b9e22 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -1,18 +1,19 @@ { ... }: { imports = - [(import ./bootloader.nix)] - ++ [(import ./hardware.nix)] - ++ [(import ./xserver.nix)] + # [(import ./bootloader.nix)] + [(import ./hardware.nix)] + # ++ [(import ./xserver.nix)] ++ [(import ./network.nix)] - ++ [(import ./pipewire.nix)] + # ++ [(import ./pipewire.nix)] ++ [(import ./program.nix)] + ++ [(import ./sshd.nix)] ++ [(import ./security.nix)] ++ [(import ./services.nix)] ++ [(import ./system.nix)] - ++ [(import ./user.nix)] - ++ [(import ./bluetooth.nix)] - ++ [(import ./yubikey.nix)] - ++ [(import ./steam.nix)] - ++ [(import ./wayland.nix)]; + ++ [(import ./user.nix)]; + # ++ [(import ./bluetooth.nix)] + # ++ [(import ./yubikey.nix)] + # ++ [(import ./steam.nix)] + # ++ [(import ./wayland.nix)]; } diff --git a/modules/core/network.nix b/modules/core/network.nix index 90db713..2c80cdb 100644 --- a/modules/core/network.nix +++ b/modules/core/network.nix @@ -1,7 +1,6 @@ { pkgs, ... }: { networking = { - hostName = "sakura"; networkmanager.enable = true; nameservers = [ "9.9.9.9" ]; firewall = { @@ -15,7 +14,7 @@ }; }; - environment.systemPackages = with pkgs; [ - networkmanagerapplet - ]; + # environment.systemPackages = with pkgs; [ + # networkmanagerapplet + # ]; }