hostName variable typo fixes

This commit is contained in:
Chris Toph 2024-09-27 19:05:53 -04:00
parent 9823172b64
commit c77a13c77f
5 changed files with 9 additions and 9 deletions

View file

@ -1,4 +1,4 @@
{ modulesPath, config, pkgs, hostName ... }: { modulesPath, config, pkgs, hostName, ... }:
{ {
## MODULES & IMPORTS ## ## MODULES & IMPORTS ##
@ -34,6 +34,6 @@
]; ];
environment.variables = { environment.variables = {
HOSTNAME = hostname; HOSTNAME = hostName;
}; };
} }

View file

@ -1,4 +1,4 @@
{ modulesPath, config, pkgs, hostName ... }: { modulesPath, config, pkgs, hostName, ... }:
{ {
## MODULES & IMPORTS ## ## MODULES & IMPORTS ##
imports = [ imports = [
@ -45,6 +45,6 @@
]; ];
environment.variables = { environment.variables = {
HOSTNAME = hostname; HOSTNAME = hostName;
}; };
} }

View file

@ -1,4 +1,4 @@
{ modulesPath, config, pkgs, hostName ... }: { modulesPath, config, pkgs, hostName, ... }:
{ {
## MODULES & IMPORTS ## ## MODULES & IMPORTS ##
imports = [ imports = [

View file

@ -1,4 +1,4 @@
{ modulesPath, config, pkgs, hostName ... }: { modulesPath, config, pkgs, hostName, ... }:
{ {
## MODULES & IMPORTS ## ## MODULES & IMPORTS ##
imports = [ imports = [
@ -34,7 +34,7 @@
package = pkgs.jdk; }; package = pkgs.jdk; };
environment.variables = { environment.variables = {
HOSTNAME = hostname; HOSTNAME = hostName;
}; };
## VS CODE ## ## VS CODE ##

View file

@ -1,4 +1,4 @@
{ modulesPath, config, pkgs, hostName ... }: { modulesPath, config, pkgs, hostName, ... }:
{ {
## MODULES & IMPORTS ## ## MODULES & IMPORTS ##
imports = [ imports = [
@ -32,6 +32,6 @@
]; ];
environment.variables = { environment.variables = {
HOSTNAME = hostname; HOSTNAME = hostName;
}; };
} }