From ad9340bf412a81f33f8b427df2f092cab5f9dc91 Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Thu, 4 Jan 2024 00:31:22 -0500 Subject: [PATCH] lowercase hostnames --- flake.nix | 8 ++++---- hosts/{BICEP => bicep}/configuration.nix | 2 +- hosts/{BICEP => bicep}/hardware-configuration.nix | 0 hosts/{JWST => jwst}/configuration.nix | 2 +- hosts/{JWST => jwst}/hardware-configuration.nix | 0 5 files changed, 6 insertions(+), 6 deletions(-) rename hosts/{BICEP => bicep}/configuration.nix (95%) rename hosts/{BICEP => bicep}/hardware-configuration.nix (100%) rename hosts/{JWST => jwst}/configuration.nix (98%) rename hosts/{JWST => jwst}/hardware-configuration.nix (100%) diff --git a/flake.nix b/flake.nix index d7556d4..848c253 100644 --- a/flake.nix +++ b/flake.nix @@ -55,12 +55,12 @@ ]; in { # desktop - nixosConfigurations."BICEP" = nixpkgs.lib.nixosSystem { + nixosConfigurations."bicep" = nixpkgs.lib.nixosSystem { inherit system; specialArgs = {inherit inputs;}; modules = [ - ./hosts/BICEP/configuration.nix + ./hosts/bicep/configuration.nix ./modules/nixos-common.nix {nixpkgs.overlays = overlays;} ] @@ -68,12 +68,12 @@ }; # laptop - nixosConfigurations."JWST" = nixpkgs.lib.nixosSystem { + nixosConfigurations."jwst" = nixpkgs.lib.nixosSystem { inherit system; specialArgs = {inherit inputs;}; modules = [ - ./hosts/JWST/configuration.nix + ./hosts/jwst/configuration.nix ./modules/nixos-common.nix nixos-hardware.nixosModules.dell-xps-15-9520 {nixpkgs.overlays = overlays;} diff --git a/hosts/BICEP/configuration.nix b/hosts/bicep/configuration.nix similarity index 95% rename from hosts/BICEP/configuration.nix rename to hosts/bicep/configuration.nix index b368b3a..16f7f00 100644 --- a/hosts/BICEP/configuration.nix +++ b/hosts/bicep/configuration.nix @@ -8,7 +8,7 @@ time.timeZone = "America/New_York"; - networking.hostName = "BICEP"; + networking.hostName = "bicep"; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions diff --git a/hosts/BICEP/hardware-configuration.nix b/hosts/bicep/hardware-configuration.nix similarity index 100% rename from hosts/BICEP/hardware-configuration.nix rename to hosts/bicep/hardware-configuration.nix diff --git a/hosts/JWST/configuration.nix b/hosts/jwst/configuration.nix similarity index 98% rename from hosts/JWST/configuration.nix rename to hosts/jwst/configuration.nix index 62d791f..09cb5a3 100644 --- a/hosts/JWST/configuration.nix +++ b/hosts/jwst/configuration.nix @@ -40,7 +40,7 @@ time.timeZone = "America/New_York"; - networking.hostName = "JWST"; + networking.hostName = "jwst"; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions diff --git a/hosts/JWST/hardware-configuration.nix b/hosts/jwst/hardware-configuration.nix similarity index 100% rename from hosts/JWST/hardware-configuration.nix rename to hosts/jwst/hardware-configuration.nix