14 lines
276 B
Nix
14 lines
276 B
Nix
{tree, ...}: {
|
|
imports = with tree; [
|
|
profiles.laptop
|
|
|
|
profiles.connectivity.network_manager
|
|
profiles.connectivity.ios
|
|
|
|
profiles.force_dns
|
|
profiles.tor
|
|
];
|
|
services.fstrim.enable = true;
|
|
systemd.services.NetworkManager-wait-online.enable = false;
|
|
}
|