fixes of things

This commit is contained in:
Simon Gardling 2025-04-21 23:34:13 -04:00
parent a640a63f02
commit bf48d7dfb2
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
2 changed files with 17 additions and 14 deletions

View File

@ -14,6 +14,7 @@
./distrobox.nix
./vm.nix
./steam.nix
./networking.nix
inputs.agenix.nixosModules.default
inputs.nixos-hardware.nixosModules.common-pc-ssd
@ -21,6 +22,7 @@
inputs.disko.nixosModules.disko
];
# I think this was causing the weird kworker freezing issue??
services.fstrim.enable = false;
programs.nix-ld = {
@ -128,9 +130,6 @@
# age.identityPaths = [ "/home/${username}/.ssh/id_ed25519" ];
# networking
networking = import ./networking.nix { inherit hostname; };
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";

View File

@ -1,5 +1,8 @@
{ hostname, ... }:
{
systemd.services.NetworkManager-wait-online.enable = false;
networking = {
hostName = hostname;
networkmanager = {
@ -16,4 +19,5 @@
};
wireless.networks = import ./secrets/wifi-passwords.nix;
};
}