Enable networkmanager for all devices
This commit is contained in:
parent
bf628b2025
commit
db1a4958ea
3 changed files with 4 additions and 13 deletions
|
|
@ -14,6 +14,9 @@ nixpkgs, # The flake's input version of nixpkgs
|
|||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.wireless.enable = false;
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "America/New_York";
|
||||
|
||||
|
|
@ -30,7 +33,7 @@ nixpkgs, # The flake's input version of nixpkgs
|
|||
users.users.kiana = {
|
||||
isNormalUser = true;
|
||||
description = "Kiana Sheibani";
|
||||
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||||
extraGroups = [ "wheel" "networkmanager" ]; # Enable ‘sudo’ for the user.
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue