Files
nixos/Droidnix/assets/flake/machines/traveldroid/networking.nix
T
2026-03-14 11:54:50 +01:00

34 lines
736 B
Nix

{
config,
pkgs,
lib,
...
}:
{
# Enable NetworkManager (NixOS-specific)
services.networkmanager = lib.mkIf (lib.isNixos) {
enable = true;
dhcpcd.enable = false; # Ensure dhcpcd is disabled to avoid conflicts
};
# Install NetworkManager and wofi (NixOS-specific)
environment.systemPackages = lib.mkIf (lib.isNixos) (
with pkgs;
[
networkmanager
wofi
]
);
# Ensure the user is in the necessary groups (NixOS-specific)
users.users.${config.users.users."henrov".username} = lib.mkIf (lib.isNixos) {
extraGroups = [ "networkmanager" ];
};
# Home Manager-specific configuration
home-manager = lib.mkIf (lib.isHomeManager) {
# Home Manager configurations go here
};
}