Files
nix-config/modules/hosts/tux/networking.nix
2026-03-17 00:15:19 +01:00

9 lines
152 B
Nix

{inputs, ...}: {
flake.modules.nixos.tux = {
imports = with inputs.self.modules.nixos; [
networkmanager
];
networking.hostName = "tux";
};
}