13 lines
218 B
Nix
13 lines
218 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking = {
|
|
networkmanager = {
|
|
enable = true;
|
|
# Does currently not work...
|
|
#enableFccUnlock = true;
|
|
};
|
|
useDHCP = false;
|
|
hostName = "ochsenchopf";
|
|
};
|
|
}
|