From 01bbfa12933b479106bbac6b696777b5acc0f4c5 Mon Sep 17 00:00:00 2001 From: Thilo Hohlt <123883702+thiloho@users.noreply.github.com> Date: Thu, 11 May 2023 17:31:03 +0200 Subject: [PATCH] Update default.nix --- nixos-configurations/laptop/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos-configurations/laptop/default.nix b/nixos-configurations/laptop/default.nix index b9de5c8..2289759 100644 --- a/nixos-configurations/laptop/default.nix +++ b/nixos-configurations/laptop/default.nix @@ -7,7 +7,10 @@ ../shared.nix ]; - networking.hostName = "laptop"; + networking = { + hostName = "laptop"; + networkmanager.enable = true; + }; services.xserver.libinput.enable = true; }