nixos-config/modules/network-manager.nix
Simon Bruder 10b8d432d5
Relicense
This applies the REUSE specification to the repository, so the licensing
information can be tracked for every file individually.
2024-01-13 14:39:22 +01:00

17 lines
341 B
Nix

# SPDX-FileCopyrightText: 2020-2022 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
{ config, lib, pkgs, ... }:
lib.mkIf config.sbruder.gui.enable {
networking.networkmanager = {
enable = true;
wifi.backend = "iwd";
};
environment.systemPackages = with pkgs; [
networkmanagerapplet
];
}