nixfiles/presets/nixos/laptop.nix
2023-09-18 03:56:58 +01:00

21 lines
411 B
Nix

{tree, ...}: {
imports = with tree; [
profiles.laptop
profiles.connectivity.networkManager
profiles.connectivity.iOS
profiles.tor
];
# TODO: Better DNS setup
services.resolved.enable = false;
environment.etc."resolv.conf".text = ''
nameserver 8.8.8.8
nameserver 8.8.4.4
'';
services.fstrim.enable = true;
systemd.services.NetworkManager-wait-online.enable = false;
}