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
|
||||
inherit (lib) mkIf;
|
||||
inherit (osConfig.modules.meta) hostname;
|
||||
in
|
||||
mkIf config.programs.ssh.enable {
|
||||
programs.ssh = {
|
||||
|
@ -16,7 +17,7 @@ mkIf config.programs.ssh.enable {
|
|||
user = "deck";
|
||||
port = 22;
|
||||
};
|
||||
vm = mkIf (osConfig.networking.hostName == "marr") {
|
||||
vm = mkIf (hostname == "marr") {
|
||||
hostname = "192.168.122.152";
|
||||
user = "ny";
|
||||
port = 22;
|
||||
|
|
|
@ -1,6 +1,13 @@
|
|||
{ config, ... }:
|
||||
let
|
||||
inherit (config.modules.meta) hostname;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./wifi.nix
|
||||
./bluetooth.nix
|
||||
];
|
||||
config = {
|
||||
networking.hostName = hostname;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -43,10 +43,7 @@ in
|
|||
"${self}/hosts/${hostname}"
|
||||
"${self}/options"
|
||||
"${self}/modules"
|
||||
{
|
||||
modules.meta.hostname = hostname;
|
||||
networking.hostName = hostname;
|
||||
}
|
||||
{ modules.meta.hostname = hostname; }
|
||||
] ++ extraModules;
|
||||
specialArgs = {
|
||||
inherit inputs inputs';
|
||||
|
|
Loading…
Add table
Reference in a new issue