added wol and changed nameservers

This commit is contained in:
voidarclabs
2026-01-07 17:14:24 +00:00
parent 31f69f0c44
commit 0e6a665fe7
2 changed files with 14 additions and 1 deletions

View File

@@ -59,6 +59,10 @@
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.networkmanager.enable = true;
networking.nameservers = [
"1.1.1.1"
"8.8.8.8"
];
# Enable bluetooth
hardware.bluetooth.enable = true;
@@ -239,6 +243,7 @@
vim
unzip
python310 # Its python like come on
usbutils
# Graphics Drivers
mesa

View File

@@ -15,6 +15,10 @@
enable32Bit = true;
};
# Wake on Lan
networking.interfaces.enp5s0.wakeOnLan.enable = true;
networking.firewall.enable = false;
services.displayManager = {
autoLogin.enable = true;
autoLogin.user = "user01";
@@ -25,14 +29,18 @@
# Local User
users.users.user01 = {
extraGroups = [ ];
extraGroups = [ "docker" ];
packages = with pkgs; [
bottles
ferdium
inputs.hyprfloat.packages.${pkgs.system}.default
delfin
docker
jellyfin-tui
];
};
virtualisation.docker = {
enable = true;
};
}