fixes of things
This commit is contained in:
parent
a640a63f02
commit
bf48d7dfb2
@ -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";
|
||||
|
||||
|
||||
@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user