Default boxes to be at home network
This commit is contained in:
@@ -7,7 +7,6 @@
|
|||||||
./home-assistant.nix
|
./home-assistant.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
./vhosts.nix
|
./vhosts.nix
|
||||||
../../profiles/home.nix
|
|
||||||
];
|
];
|
||||||
networking.hostName = "2maccabees";
|
networking.hostName = "2maccabees";
|
||||||
greg.rpi4.enable = true;
|
greg.rpi4.enable = true;
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
./postgres.nix
|
./postgres.nix
|
||||||
./synapse.nix
|
./synapse.nix
|
||||||
];
|
];
|
||||||
|
greg.home = false;
|
||||||
networking.hostName = "linode";
|
networking.hostName = "linode";
|
||||||
networking.domain = "thehellings.com";
|
networking.domain = "thehellings.com";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./home.nix
|
||||||
./proxy.nix
|
./proxy.nix
|
||||||
./rpi4.nix
|
./rpi4.nix
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
{ config, lib, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.greg.home;
|
||||||
|
|
||||||
|
in with lib;
|
||||||
|
{
|
||||||
|
options.greg.home = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = true;
|
||||||
|
description = "Sets the device up to be part of my home network";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg {
|
||||||
|
time.timeZone = "America/Chicago";
|
||||||
|
networking.domain = "thehellings.lan";
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
{ config, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
time.timeZone = "America/Chicago";
|
|
||||||
networking.domain = "thehellings.lan";
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user