14 lines
182 B
Nix
14 lines
182 B
Nix
{
|
|
networking.useDHCP = true;
|
|
|
|
networking.firewall = {
|
|
enable = false;
|
|
};
|
|
|
|
environment.persistence."/persist" = {
|
|
directories = [
|
|
"/var/db/dhcpcd"
|
|
];
|
|
};
|
|
}
|