12 lines
182 B
Nix
12 lines
182 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking = {
|
|
networkmanager = {
|
|
enable = true;
|
|
enableFccUnlock = true;
|
|
};
|
|
useDHCP = false;
|
|
hostName = "ochsenchopf";
|
|
};
|
|
}
|