From eaee8c652e2527c7497b1039cfd0ec55d493be03 Mon Sep 17 00:00:00 2001 From: Hunter Date: Thu, 4 Dec 2025 09:52:49 -0500 Subject: [PATCH] feat: Add 2nd laptop nix-laptop2 --- hosts/default.nix | 10 +++++++++- hosts/{nix-laptop1.nix => nix-laptop.nix} | 0 2 files changed, 9 insertions(+), 1 deletion(-) rename hosts/{nix-laptop1.nix => nix-laptop.nix} (100%) diff --git a/hosts/default.nix b/hosts/default.nix index 7a824ed..7a55e02 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -80,7 +80,15 @@ in hostName = "nix-laptop1"; system = "x86_64-linux"; extraModules = [ - ./nix-laptop1.nix + ./nix-laptop.nix + ]; + }; + + nix-laptop2 = mkHost { + hostName = "nix-laptop2"; + system = "x86_64-linux"; + extraModules = [ + ./nix-laptop.nix ]; }; diff --git a/hosts/nix-laptop1.nix b/hosts/nix-laptop.nix similarity index 100% rename from hosts/nix-laptop1.nix rename to hosts/nix-laptop.nix