From c4f7ceed57f3ebb5158cdb2e64bd45082176d454 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 3 Oct 2023 16:37:52 +0000 Subject: [PATCH] Update flake.nix --- systems/x86_64/thelio-b1/flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/systems/x86_64/thelio-b1/flake.nix b/systems/x86_64/thelio-b1/flake.nix index a09d3d6..959c151 100644 --- a/systems/x86_64/thelio-b1/flake.nix +++ b/systems/x86_64/thelio-b1/flake.nix @@ -1,5 +1,5 @@ { - description = "thelio-b1"; + description = "Joker"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/release-23.05"; @@ -7,7 +7,7 @@ outputs = { self, nixpkgs, ... }@inputs: { nixosConfigurations = { - "thelio-b1" = nixpkgs.lib.nixosSystem { + "joker" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ # Import the configuration.nix we used before, so that the old configuration file can still take effect. @@ -47,7 +47,7 @@ }; networking = { - hostName = "thelio-b1"; + hostName = "joker"; networkmanager.enable = true; };