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 ##
|
||||
|
||||
|
@ -34,6 +34,6 @@
|
|||
];
|
||||
|
||||
environment.variables = {
|
||||
HOSTNAME = hostname;
|
||||
HOSTNAME = hostName;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ modulesPath, config, pkgs, hostName ... }:
|
||||
{ modulesPath, config, pkgs, hostName, ... }:
|
||||
{
|
||||
## MODULES & IMPORTS ##
|
||||
imports = [
|
||||
|
|
|
@ -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 ##
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue