From 360e549a5e114b312b313e5e843c9f9d18643475 Mon Sep 17 00:00:00 2001 From: randomuser Date: Tue, 1 Aug 2023 15:46:57 -0500 Subject: [PATCH] move common files like the desktop configuration and main.nix to common/ --- boxes/netbox.nix | 2 +- desktop.nix => common/desktop.nix | 0 main.nix => common/main.nix | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename desktop.nix => common/desktop.nix (100%) rename main.nix => common/main.nix (85%) diff --git a/boxes/netbox.nix b/boxes/netbox.nix index b404c36..afe1aff 100644 --- a/boxes/netbox.nix +++ b/boxes/netbox.nix @@ -4,7 +4,7 @@ imports = [ ../modules/mail.nix - ../main.nix + ../common/main.nix ]; boot.loader.grub.enable = true; diff --git a/desktop.nix b/common/desktop.nix similarity index 100% rename from desktop.nix rename to common/desktop.nix diff --git a/main.nix b/common/main.nix similarity index 85% rename from main.nix rename to common/main.nix index fc18c5a..4f62e31 100644 --- a/main.nix +++ b/common/main.nix @@ -3,7 +3,7 @@ { imports = [ - ./hardware-configuration.nix # include the results of the hardware scan + ../hardware-configuration.nix # include the results of the hardware scan ]; networking.networkmanager.enable = true;