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 ##
@ -34,6 +34,6 @@
];
environment.variables = {
HOSTNAME = hostname;
HOSTNAME = hostName;
};
}

View file

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

View file

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

View file

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

View file

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