lowercase hostnames

This commit is contained in:
Aria Nolan 2024-01-04 00:31:22 -05:00
parent 6777dd1fbe
commit ad9340bf41
5 changed files with 6 additions and 6 deletions

View file

@ -55,12 +55,12 @@
]; ];
in { in {
# desktop # desktop
nixosConfigurations."BICEP" = nixpkgs.lib.nixosSystem { nixosConfigurations."bicep" = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = {inherit inputs;}; specialArgs = {inherit inputs;};
modules = modules =
[ [
./hosts/BICEP/configuration.nix ./hosts/bicep/configuration.nix
./modules/nixos-common.nix ./modules/nixos-common.nix
{nixpkgs.overlays = overlays;} {nixpkgs.overlays = overlays;}
] ]
@ -68,12 +68,12 @@
}; };
# laptop # laptop
nixosConfigurations."JWST" = nixpkgs.lib.nixosSystem { nixosConfigurations."jwst" = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = {inherit inputs;}; specialArgs = {inherit inputs;};
modules = modules =
[ [
./hosts/JWST/configuration.nix ./hosts/jwst/configuration.nix
./modules/nixos-common.nix ./modules/nixos-common.nix
nixos-hardware.nixosModules.dell-xps-15-9520 nixos-hardware.nixosModules.dell-xps-15-9520
{nixpkgs.overlays = overlays;} {nixpkgs.overlays = overlays;}

View file

@ -8,7 +8,7 @@
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";
networking.hostName = "BICEP"; networking.hostName = "bicep";
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions

View file

@ -40,7 +40,7 @@
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";
networking.hostName = "JWST"; networking.hostName = "jwst";
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions