hostName variable typo fixes
This commit is contained in:
parent
9823172b64
commit
c77a13c77f
5 changed files with 9 additions and 9 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ modulesPath, config, pkgs, hostName ... }:
|
{ modulesPath, config, pkgs, hostName, ... }:
|
||||||
{
|
{
|
||||||
## MODULES & IMPORTS ##
|
## MODULES & IMPORTS ##
|
||||||
imports = [
|
imports = [
|
||||||
|
|
|
@ -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 ##
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue