Files
Foundry/hosts/ubuntu/electra/default.nix
T
Gabriel Fontes cc5bd4b3c8 refactor(hosts): rename system-manager to ubuntu
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)
2026-08-13 16:44:51 -03:00

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"];
}