hosts/anemone: init

This commit is contained in:
LavaDesu 2024-01-17 15:40:02 +07:00
parent 1ba66868be
commit 1700e735f6
Signed by: cilly
GPG key ID: 6500251E087653C9
5 changed files with 143 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ config, ... }: {
networking = {
nameservers = [ "1.1.1.1" "8.8.8.8" ];
wireless.iwd.enable = true;
networkmanager = {
enable = true;
wifi.backend = "iwd";
};
extraHosts = ''
192.168.100.16 hyacinth
'';
};
}