hosts/anemone: init
This commit is contained in:
parent
1ba66868be
commit
1700e735f6
5 changed files with 143 additions and 0 deletions
15
hosts/anemone/networking.nix
Normal file
15
hosts/anemone/networking.nix
Normal 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
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue