Changed: Networking

This commit is contained in:
DerGrumpf 2025-04-07 23:40:03 +02:00
parent f1c81547c4
commit 252d028560
2 changed files with 27 additions and 32 deletions

View File

@ -28,46 +28,36 @@
# Bootloader. # Bootloader.
boot.loader = { boot.loader = {
efi = { efi.canTouchEfiVariables = true;
canTouchEfiVariables = true;
# efiSysMountPoint = "/boot/efi"; # ← use the same mount point here.
};
systemd-boot.enable = true; systemd-boot.enable = true;
}; };
networking.hostName = "nix-desktop"; # Define your hostname. networking = {
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. hostName = "nix-desktop";
networkmanager.enable = true;
useDHCP = false;
dhcpcd.enable = false;
interfaces = {
eno1.ipv4.addresses = [{
address = "192.168.2.40";
prefixLength = 24;
}];
};
# Configure network proxy if necessary defaultGateway = {
# networking.proxy.default = "http://user:password@proxy:port/"; address = "192.168.2.1";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; interface = "eth0";
};
# Enable networking nameservers = [
networking.networkmanager.enable = true; "192.168.2.50"
networking.defaultGateway = "192.168.2.1";
networking.useDHCP = false;
networking.dhcpcd.enable = false;
networking.nameservers = [
"1.1.1.1" "1.1.1.1"
"1.0.0.1"
"8.8.8.8" "8.8.8.8"
"8.8.4.4"
]; ];
};
# for Nvidia GPU
#services.xserver.videoDrivers = ["nvidia"];
hardware.graphics.enable = true; hardware.graphics.enable = true;
#hardware.nvidia = {
# package = config.boot.kernelPackages.nvidiaPackages.stable;
# modesetting.enable = true;
#};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "25.11"; # Did you read the comment? system.stateVersion = "25.11"; # Did you read the comment?
} }

View File

@ -24,6 +24,11 @@
options = [ "fmask=0022" "dmask=0022" ]; options = [ "fmask=0022" "dmask=0022" ];
}; };
fileSystems."/storage" =
{ device = "/dev/disk/by-label/STORAGE";
fsType = "ext4";
};
swapDevices = [ ]; swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking