mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-26 07:43:45 +01:00
12 lines
131 B
Nix
12 lines
131 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
networking = {
|
||
|
hostName = "chnum";
|
||
|
|
||
|
networkmanager = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|