osmium wifi ip4v fix

This commit is contained in:
2025-07-07 11:03:18 -05:00
parent 1f6e048941
commit 9b3400f8a0
+8 -23
View File
@@ -60,7 +60,11 @@
networking.hostName = "roy-laptop";
networking.hostId = "4cb9fc76";
networking.wireless = {
networking = {
useDHCP = true;
networkmanager.enable = false;
wireless = {
userControlled.enable = true;
enable = true;
secretsFile = config.sops.secrets."networkPasswords".path;
networks = {
@@ -85,31 +89,11 @@
};
};
networking.wireless.userControlled.enable = true; # Enable user to edit wpa_supplicant.
networking.networkmanager.enable = false; # Easiest to use and most distros use this by default.
};
# Set your time zone.
time.timeZone = "America/Chicago";
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Select internationalisation properties.
# i18n.defaultLocale = "en_US.UTF-8";
# console = {
# font = "Lat2-Terminus16";
# keyMap = "us";
# useXkbConfig = true; # use xkb.options in tty.
# };
# Enable the X11 windowing system.
# services.xserver.enable = true;
# Configure keymap in X11
# services.xserver.xkb.layout = "us";
# services.xserver.xkb.options = "eurosign:e,caps:escape";
# Enable CUPS to print documents.
services.printing = {
enable = true;
@@ -122,6 +106,7 @@
nssmdns4 = true;
openFirewall = true;
};
# Enable sound.
# hardware.pulseaudio.enable = true;
# OR
@@ -138,7 +123,7 @@
users.users.roy = {
isNormalUser = true;
hashedPassword = "$y$j9T$4yOAv6R7Xtn23XmhSSC8g.$T1CckfWgxjEyZshjBzcaMO9WidP.q..OG7LwtXFTw12";
extraGroups = [ "wheel" ];
extraGroups = [ "wheel" "networkmanager" ];
shell = pkgs.fish;
};