lowercase hostnames
This commit is contained in:
parent
6777dd1fbe
commit
ad9340bf41
|
@ -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;}
|
||||
|
|
|
@ -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
|
|
@ -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
|
Loading…
Reference in a new issue