networking

This commit is contained in:
mjallen18
2025-03-20 21:32:22 -05:00
parent 3714518ead
commit 79901a9f60
4 changed files with 87 additions and 23 deletions

View File

@@ -8,7 +8,10 @@ in
{ {
# Configure bootloader with lanzaboot and secureboot # Configure bootloader with lanzaboot and secureboot
boot = { boot = {
kernelModules = [ "nct6775" ]; kernelModules = [
"nct6775"
"kvm-amd"
];
loader = { loader = {
efi = { efi = {
canTouchEfiVariables = true; canTouchEfiVariables = true;
@@ -19,6 +22,15 @@ in
initrd = { initrd = {
verbose = false; verbose = false;
systemd.enable = true; systemd.enable = true;
availableKernelModules = [
"xhci_pci"
"nvme"
"ahci"
"usbhid"
"uas"
"usb_storage"
"sd_mod"
];
}; };
plymouth = { plymouth = {
@@ -29,7 +41,7 @@ in
enable = true; enable = true;
pkiBundle = "/etc/secureboot"; pkiBundle = "/etc/secureboot";
settings = { settings = {
# default = default; # default = default;
console-mode = "max"; console-mode = "max";
}; };
configurationLimit = configLimit; configurationLimit = configLimit;

View File

@@ -10,19 +10,6 @@
{ {
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules = [
"xhci_pci"
"nvme"
"ahci"
"usbhid"
"uas"
"usb_storage"
"sd_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" = {
device = "none"; device = "none";
fsType = "tmpfs"; fsType = "tmpfs";

View File

@@ -1,4 +1,4 @@
{ lib, ... }: { lib, config, ... }:
let let
hostname = "matt-nixos"; hostname = "matt-nixos";
in in
@@ -8,8 +8,39 @@ in
hostName = hostname; hostName = hostname;
# Enable Network Manager # Enable Network Manager
networkmanager.enable = lib.mkDefault true; networkmanager = {
networkmanager.wifi.powersave = lib.mkDefault false; enable = lib.mkDefault true;
networkmanager.settings.connectivity.uri = lib.mkDefault "http://nmcheck.gnome.org/check_network_status.txt"; wifi.powersave = lib.mkDefault false;
settings.connectivity.uri = lib.mkDefault "http://nmcheck.gnome.org/check_network_status.txt";
ensureProfiles = {
environmentFiles = [
config.sops.secrets.wifi.path
];
profiles = {
"Joey's Jungle 6G" = {
connection = {
id = "Joey's Jungle 6G";
type = "wifi";
};
ipv4 = {
method = "auto";
};
ipv6 = {
addr-gen-mode = "stable-privacy";
method = "auto";
};
wifi = {
mode = "infrastructure";
ssid = "Joey's Jungle 6G";
};
wifi-security = {
key-mgmt = "sae";
psk = "$PSK";
};
};
};
};
};
}; };
} }

View File

@@ -1,4 +1,4 @@
{ ... }: { config, ... }:
let let
hostname = "jallen-nas"; hostname = "jallen-nas";
ports = [ ports = [
@@ -24,7 +24,41 @@ in
hostId = "4b501480"; hostId = "4b501480";
# Disable Network Manager # Disable Network Manager
networkmanager.enable = true; networkmanager = {
enable = true;
ensureProfiles = {
environmentFiles = [
config.sops.secrets.wifi.path
];
profiles = {
"Joey's Jungle 6G" = {
connection = {
id = "Joey's Jungle 6G";
type = "wifi";
};
ipv4 = {
address1 = "10.0.1.18/24";
dns = "10.0.1.1";
gateway = "10.0.1.1";
method = "manual";
};
ipv6 = {
addr-gen-mode = "stable-privacy";
method = "auto";
};
wifi = {
mode = "infrastructure";
ssid = "Joey's Jungle 6G";
};
wifi-security = {
key-mgmt = "sae";
psk = "$PSK";
};
};
};
};
};
nat = { nat = {
enable = true; enable = true;