Hook in the hostname separately
This commit is contained in:
parent
c0211a8b76
commit
808926f012
|
@ -65,6 +65,8 @@
|
||||||
(
|
(
|
||||||
{ pkgs, ... }@args: {
|
{ pkgs, ... }@args: {
|
||||||
config._module.args = {
|
config._module.args = {
|
||||||
|
hostname = name;
|
||||||
|
|
||||||
machineConfig = (default args) //
|
machineConfig = (default args) //
|
||||||
(config args) // {
|
(config args) // {
|
||||||
inherit name;
|
inherit name;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ machineConfig, ... }: {
|
{ hostname, machineConfig, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./modules/custom-build-vm.nix
|
./modules/custom-build-vm.nix
|
||||||
./modules/custom-sops-nix.nix
|
./modules/custom-sops-nix.nix
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
users.myUsers = machineConfig.users;
|
users.myUsers = machineConfig.users;
|
||||||
|
|
||||||
# Networking
|
# Networking
|
||||||
networking.hostName = machineConfig.name;
|
networking.hostName = hostname;
|
||||||
|
|
||||||
# Set time zone
|
# Set time zone
|
||||||
time.timeZone = machineConfig.timeZone;
|
time.timeZone = machineConfig.timeZone;
|
||||||
|
|
Loading…
Reference in a new issue