Add networking settings
This commit is contained in:
parent
eb1e73777d
commit
4321802a22
|
|
@ -9,6 +9,7 @@
|
|||
./fonts.nix
|
||||
./gdm.nix
|
||||
./hyprland.nix
|
||||
./network.nix
|
||||
./packages.nix
|
||||
./pipewire.nix
|
||||
./plasma.nix
|
||||
|
|
|
|||
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
config,
|
||||
host,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
networking = {
|
||||
hostName = "${host}";
|
||||
networkmanager.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [ networkmanagerapplet ];
|
||||
}
|
||||
|
|
@ -34,6 +34,7 @@ in
|
|||
isNormalUser = true;
|
||||
intialPassword = "changeme";
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
];
|
||||
shell = pkgs.${shellCfg.defaultShell};
|
||||
|
|
|
|||
Loading…
Reference in New Issue