diff options
Diffstat (limited to 'ymir.nix')
-rw-r--r-- | ymir.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ | |||
2 | 2 | ||
3 | let | 3 | let |
4 | luaPam = pkgs.callPackage ./custom/luaPam.nix {}; | 4 | luaPam = pkgs.callPackage ./custom/luaPam.nix {}; |
5 | luaPosix = pkgs.callPackage ./custom/luaPosix.nix {}; | ||
5 | in { | 6 | in { |
6 | imports = | 7 | imports = |
7 | [ | 8 | [ |
@@ -22,7 +23,7 @@ in { | |||
22 | inherit (pkgs.lua51Packages) luasocket luasec luaexpat luafilesystem luabitop luaevent luazlib; | 23 | inherit (pkgs.lua51Packages) luasocket luasec luaexpat luafilesystem luabitop luaevent luazlib; |
23 | lua5 = pkgs.lua5_1; | 24 | lua5 = pkgs.lua5_1; |
24 | extraModules = ["mod_auth_pam"]; | 25 | extraModules = ["mod_auth_pam"]; |
25 | extraLibs = [luaPam]; | 26 | extraLibs = [luaPam luaPosix]; |
26 | }); | 27 | }); |
27 | }; | 28 | }; |
28 | 29 | ||