From dc84c859e5e36bfa7ad09b3a33ef57ecb281f61a Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 5 Jun 2023 12:35:45 -0400 Subject: [PATCH] nix: Use naming convention for hardware-configuration Although I could just integrate this directly in configuration.nix since everything is a module, having a separate hardware-configuration.nix makes it easier to integrate with other devices that may output different configurations. --- host/laptop/default.nix => hardware-configuration.nix | 0 host/default.nix | 8 -------- 2 files changed, 8 deletions(-) rename host/laptop/default.nix => hardware-configuration.nix (100%) delete mode 100644 host/default.nix diff --git a/host/laptop/default.nix b/hardware-configuration.nix similarity index 100% rename from host/laptop/default.nix rename to hardware-configuration.nix diff --git a/host/default.nix b/host/default.nix deleted file mode 100644 index 4c1531a7..00000000 --- a/host/default.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ - imports = [ - ./laptop - ./mullvad - ./networking - ./virtualization - ]; -}