Standalone NixOS modules: ai, bluetooth, dev, fwupd, libvirtd, networkmanager, podman Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
235 B
Nix
11 lines
235 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.networkmanager = { config, lib, pkgs, ... }: {
|
|
networking.networkmanager = {
|
|
enable = true;
|
|
wifi.backend = "iwd";
|
|
};
|
|
|
|
users.users.user.extraGroups = [ "networkmanager" ];
|
|
};
|
|
}
|