1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Fix NetworkManager config

This commit is contained in:
RGBCube 2023-11-02 14:36:49 +03:00
parent 8c2c90d8dc
commit ca0294d33d
No known key found for this signature in database

View file

@ -1,11 +1,6 @@
{ lib, pkgs, systemConfiguration, systemPackages, enabled, ... }: lib.recursiveUpdate { systemConfiguration, enabled, ... }:
(systemConfiguration { systemConfiguration {
networking.networkmanager = enabled {}; networking.networkmanager = enabled {};
}) systemd.network = enabled {};
}
(with pkgs; systemPackages [
nmcli
nmtui
])