From 0e6a665fe72fc54aab1db5fe8db9c1a1b73021ee Mon Sep 17 00:00:00 2001 From: voidarclabs Date: Wed, 7 Jan 2026 17:14:24 +0000 Subject: [PATCH] added wol and changed nameservers --- common.nix | 5 +++++ configuration-pc.nix | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/common.nix b/common.nix index a0e0189..e9c32c9 100644 --- a/common.nix +++ b/common.nix @@ -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 diff --git a/configuration-pc.nix b/configuration-pc.nix index 8d93bd2..1f7cb02 100644 --- a/configuration-pc.nix +++ b/configuration-pc.nix @@ -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; + }; }