From 892009fb9d458a75298800eaa0755bb75490dd8a Mon Sep 17 00:00:00 2001 From: Alex Davies Date: Wed, 24 Apr 2024 10:50:04 -0300 Subject: [PATCH] Remove hostname assignment for nixos configurations. --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 8539962..917ac0c 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ # Shameless plug: looking for a way to nixify your themes and make # everything match nicely? Try nix-colors! - # nix-colors.url = "github:misterio77/nix-colors"; + nix-colors.url = "github:misterio77/nix-colors"; }; outputs = { @@ -61,16 +61,16 @@ nixosConfigurations = { #Personal laptop, thinkpad t490 athame = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs outputs; hostname = "athame";}; + specialArgs = {inherit inputs outputs;}; modules = [ # > Our main nixos configuration file < ./nixos/kde-desktop.nix ./nixos/configuration.nix ]; }; - #Work laptop, dell g15. Nvidia gpu + #Work laptop, dell g15. metatron = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs outputs; hostname = "metatron";}; + specialArgs = {inherit inputs outputs;}; modules = [ # > Our main nixos configuration file < ./nixos/kde-desktop.nix