From 2db8b91ace9fd7feb7ab2b34a6af485e5ce1479d Mon Sep 17 00:00:00 2001
From: iFargle <albert@sysctl.io>
Date: Sat, 1 Jul 2023 17:02:43 +0900
Subject: [PATCH] test

---
 flake.nix | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/flake.nix b/flake.nix
index d0d3164e..4707d293 100644
--- a/flake.nix
+++ b/flake.nix
@@ -20,7 +20,7 @@
 
   outputs = { nixpkgs, home-manager, lanzaboote, ... }:
   let
-    hostname = "ddd";
+    hostname = "nixos-laptop";
     system = "x86_64-linux";
     pkgs = import nixpkgs {
       # Tells Flake what OS version we are using
@@ -52,7 +52,7 @@
     nixosConfigurations = {
       # Declare the configuration for my laptop
       nixos-p1 = lib.nixosSystem { 
-        inherit system;
+        inherit system hostname;
         modules = [
           # Hardware Configuration
           ./hardware/lenovo-p1.nix
@@ -73,7 +73,7 @@
 
       # Declare the configuration for my desktop
       nixos-desktop = lib.nixosSystem { 
-        inherit system;
+        inherit system hostname;
         modules = [
           # Hardware Configuration
           ./hardware/desktop.nix