mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-24 10:04:09 -05:00
The tree is heavily Ubuntu-coupled: masking netplan's generator and Ubuntu's own wpa_supplicant units, apt packages in cloud-init, /etc/dbus-1 policy. Assisted-by: pi (claude-opus-5)
16 lines
460 B
Nix
16 lines
460 B
Nix
{...}: {
|
|
imports = [
|
|
../common/global
|
|
../common/users/gabriel
|
|
../common/optional/wireless.nix
|
|
];
|
|
|
|
_module.args.systemManagerHostName = "electra";
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
# Pinned rather than auto-detected: with an empty list the upstream module
|
|
# installs a udev rule that calls /run/current-system/systemd/bin/systemctl,
|
|
# a path that does not exist outside NixOS.
|
|
networking.wireless.interfaces = ["wlp0s20f3"];
|
|
}
|