feat(nixos): add networking module

This commit is contained in:
Mohammad Rafiq 2025-07-07 19:17:55 +08:00
parent 7881c76f73
commit d8aa7f62b4
No known key found for this signature in database
2 changed files with 24 additions and 11 deletions

View file

@ -1,17 +1,14 @@
let
testCfg =
{ hostName, ... }:
{
networking = { inherit hostName; };
machine = {
bluetooth.enable = true;
usb.automount = true;
virtualisation.podman = {
enable = true;
distrobox.enable = true;
};
testCfg = {
machine = {
bluetooth.enable = true;
usb.automount = true;
virtualisation.podman = {
enable = true;
distrobox.enable = true;
};
};
};
in
{
flake.manifest = {