11 lines
172 B
Nix
11 lines
172 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
networking.hostName = "nixos";
|
|
networking.networkmanager.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
nm-connection-editor
|
|
];
|
|
}
|