feat: update to rust linting and flake update

This commit is contained in:
Jet Pham 2025-12-08 18:43:50 -08:00
parent bf461e4f7d
commit c12e188acc
No known key found for this signature in database
4 changed files with 40 additions and 44 deletions

View file

@ -13,6 +13,7 @@
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelParams = [ "usbcore.autosuspend=-1" ];
# Boot time optimizations
boot.loader.timeout = 0; # Boot immediately without waiting for user input
@ -38,23 +39,20 @@
};
};
# Enable networking
networking.networkmanager.enable = true;
networking.nameservers = [ "1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one" ];
services.resolved = {
enable = true;
dnssec = "true";
domains = [ "~." ];
fallbackDns = [ "1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one" ];
dnsovertls = "true";
};
networking.firewall.checkReversePath = "loose";
services.tailscale.enable = true;
services.mullvad-vpn.enable = true;
services.mullvad-vpn.package = pkgs.mullvad-vpn;
# Set your time zone.
time.timeZone = "America/Los_Angeles";
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";