diff --git a/system/default.nix b/system/default.nix index 84e1588d..9fa6cea4 100644 --- a/system/default.nix +++ b/system/default.nix @@ -113,6 +113,11 @@ with mylib.networking; { protectKernelImage = true; rtkit.enable = true; + pam.services = { + # Allow Hyprlock to unlock the system + hyprlock = {}; + }; + # TODO: Replace with polkit sudo.enable = true; sudo.extraRules = [ diff --git a/system/modules/systemd-networkd/default.nix b/system/modules/systemd-networkd/default.nix index cb567307..729b5182 100644 --- a/system/modules/systemd-networkd/default.nix +++ b/system/modules/systemd-networkd/default.nix @@ -2,11 +2,9 @@ # TODO: Need to set permissions through polkit module # TODO: Setup Wireless (IWD/Networkd?) { - inputs, config, lib, mylib, - pkgs, ... }: with lib;