From 1e61f9c9874f5aab05bd0c3b480705ce669c22ba Mon Sep 17 00:00:00 2001 From: iFargle Date: Tue, 15 Aug 2023 16:38:51 +0900 Subject: [PATCH] test --- hosts/nixos-laptop/flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/nixos-laptop/flake.nix b/hosts/nixos-laptop/flake.nix index e67df56e..d252c312 100644 --- a/hosts/nixos-laptop/flake.nix +++ b/hosts/nixos-laptop/flake.nix @@ -8,11 +8,11 @@ nixos-hardware.url = "github:NixOS/nixos-hardware/master"; }; - outputs = { nixos-hardware, ... }@inputs: { + outputs = { hostname, nixos-hardware, ... }@inputs: { # NixOS Configuration files: nixosConfigurations = { # Declare a generic configuration using the $hostname variable: - ${hostname} = unstable-nixpkgs.lib.nixosSystem { + "nixos-laptop" = unstable-nixpkgs.lib.nixosSystem { inherit system; specialArgs = { inherit hostname; @@ -23,7 +23,7 @@ # Flake Imports nixos-hardware.nixosModules.lenovo-thinkpad-p1 ]; # modules - }; # lib.nixosSystem - ${hostname} + }; # lib.nixosSystem - "nixos-laptop" }; # nixosConfiguration }; }