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 = [