Added networking

This commit is contained in:
2026-03-13 23:48:55 +01:00
parent 8da47fabc4
commit 1574a5ae47
5 changed files with 462 additions and 370 deletions
+26
View File
@@ -515,6 +515,7 @@ This is the top of the machine hierarchy
./audio.nix
./xdg.nix
./session.nix
./networking.nix
inputs.home-manager.nixosModules.home-manager
];
}
@@ -611,6 +612,31 @@ This sets the dbus implementation
}
#+END_SRC
** =assets/flake/machines/traveldroid/networking.nix=
This sets the dbus implementation
#+BEGIN_SRC nix :tangle assets/flake/machines/traveldroid/networking.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, ... }:
{
# Enable NetworkManager
services.NetworkManager = {
enable = true;
dhcpcd.enable = false; # Ensure dhcpcd is disabled to avoid conflicts
};
# Install NetworkManager and wofi
environment.systemPackages = with pkgs; [
networkmanager
wofi
];
# Ensure the user is in the necessary groups
users.users.${config.users.users."henrov".username} = {
extraGroups = [ "networkmanager" ];
};
}
#+END_SRC
** =assets/flake/machines/traveldroid/session.nix=
This sets the dbus implementation
#+BEGIN_SRC nix :tangle assets/flake/machines/traveldroid/session.nix :noweb tangle :mkdirp yes :eval never-html