networking.nix: fix hostname
This commit is contained in:
parent
a7b0066df7
commit
070a4d8675
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
||||||
{config, ...}: let
|
{config, ...}: let
|
||||||
inherit (config.modules.other.system) username;
|
inherit (config.modules.other.system) hostname username;
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
./networkmanager.nix
|
./networkmanager.nix
|
||||||
];
|
];
|
||||||
networking = {
|
networking = {
|
||||||
hostName = username;
|
hostName = hostname;
|
||||||
enableIPv6 = true;
|
enableIPv6 = true;
|
||||||
nameservers = [
|
nameservers = [
|
||||||
# quad9 DNS
|
# quad9 DNS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue