feat: set network.hostName to meta.hostname
This commit is contained in:
parent
b3977d8d74
commit
2de14534fd
3 changed files with 10 additions and 5 deletions
|
@ -6,6 +6,7 @@
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
|
inherit (osConfig.modules.meta) hostname;
|
||||||
in
|
in
|
||||||
mkIf config.programs.ssh.enable {
|
mkIf config.programs.ssh.enable {
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
|
@ -16,7 +17,7 @@ mkIf config.programs.ssh.enable {
|
||||||
user = "deck";
|
user = "deck";
|
||||||
port = 22;
|
port = 22;
|
||||||
};
|
};
|
||||||
vm = mkIf (osConfig.networking.hostName == "marr") {
|
vm = mkIf (hostname == "marr") {
|
||||||
hostname = "192.168.122.152";
|
hostname = "192.168.122.152";
|
||||||
user = "ny";
|
user = "ny";
|
||||||
port = 22;
|
port = 22;
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
|
{ config, ... }:
|
||||||
|
let
|
||||||
|
inherit (config.modules.meta) hostname;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./wifi.nix
|
./wifi.nix
|
||||||
./bluetooth.nix
|
./bluetooth.nix
|
||||||
];
|
];
|
||||||
|
config = {
|
||||||
|
networking.hostName = hostname;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,10 +43,7 @@ in
|
||||||
"${self}/hosts/${hostname}"
|
"${self}/hosts/${hostname}"
|
||||||
"${self}/options"
|
"${self}/options"
|
||||||
"${self}/modules"
|
"${self}/modules"
|
||||||
{
|
{ modules.meta.hostname = hostname; }
|
||||||
modules.meta.hostname = hostname;
|
|
||||||
networking.hostName = hostname;
|
|
||||||
}
|
|
||||||
] ++ extraModules;
|
] ++ extraModules;
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs inputs';
|
inherit inputs inputs';
|
||||||
|
|
Loading…
Add table
Reference in a new issue