diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-09-22 11:42:15 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-09-22 11:42:15 -0500 |
commit | b502ba78e5f3031c9c6b2e899b24d9ca29579cb6 (patch) | |
tree | 89620c839fb6bbc2b41b76bbff63bedd3771bea4 /modules/default.nix | |
parent | 4ccd9de68e1eb71f0464c6016c3cd6341230d422 (diff) | |
download | nixos-config-b502ba78e5f3031c9c6b2e899b24d9ca29579cb6.tar.gz nixos-config-b502ba78e5f3031c9c6b2e899b24d9ca29579cb6.zip |
modules/default: Add packages' /include to system path
Diffstat (limited to 'modules/default.nix')
-rw-r--r-- | modules/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/default.nix b/modules/default.nix index 65ba307..cae1b17 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -35,6 +35,8 @@ documentation.man.generateCaches = true; + environment.pathsToLink = [ "/include" ]; + services.udev.extraRules = '' KERNEL=="uinput", MODE="0660", GROUP="input" ''; |