From d9422401b468f33e8e8c2b165c1d7a5f7a361cd5 Mon Sep 17 00:00:00 2001 From: iFargle Date: Sat, 1 Jul 2023 17:01:10 +0900 Subject: [PATCH] test --- flake.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 671fc0b5..8fbffc14 100644 --- a/flake.nix +++ b/flake.nix @@ -20,7 +20,7 @@ outputs = { nixpkgs, home-manager, lanzaboote, ... }: let - hostname = "nixos-laptop"; + hostname = "ddd"; system = "x86_64-linux"; pkgs = import nixpkgs { # Tells Flake what OS version we are using @@ -49,10 +49,9 @@ }; # NixOS Configuration files: - networking.hostname = "${hostname}"; nixosConfigurations = { - # Declare the configuration for "nixos-laptop": - nixos-laptop = lib.nixosSystem { + # Declare the configuration for my laptop + nixos-p1 = lib.nixosSystem { inherit system hostname; modules = [ # Hardware Configuration @@ -72,7 +71,7 @@ ]; # modules }; # lib.nixosSystem - nixos-laptop - # Declare the configuration for "nixos-p1", my laptop: + # Declare the configuration for my desktop nixos-desktop = lib.nixosSystem { inherit system hostname; modules = [