From 95b60272253292ba2fc69ddf2526b82f838707ab Mon Sep 17 00:00:00 2001 From: mrflos Date: Wed, 11 Sep 2024 20:39:26 +0300 Subject: [PATCH] fix(machines): zoro double import --- machines/ThinkCentre-M710q-zoro-configuration.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/machines/ThinkCentre-M710q-zoro-configuration.nix b/machines/ThinkCentre-M710q-zoro-configuration.nix index ec6f31e..41c772a 100644 --- a/machines/ThinkCentre-M710q-zoro-configuration.nix +++ b/machines/ThinkCentre-M710q-zoro-configuration.nix @@ -2,11 +2,10 @@ { imports = - [ # Include the results of the hardware scan. ./ThinkCentre-M710q-zoro-hardware-configuration.nix + ../modules/minimal-server.nix ]; - # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -36,10 +35,6 @@ time.timeZone = "Europe/Moscow"; i18n.defaultLocale = "en_US.UTF-8"; - imports = [ - ../modules/minimal-server.nix - ]; - users.users.optisseur = { isNormalUser = true; extraGroups = [ "wheel" ];