summaryrefslogtreecommitdiff
path: root/ymir.nix
diff options
context:
space:
mode:
Diffstat (limited to 'ymir.nix')
-rw-r--r--ymir.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/ymir.nix b/ymir.nix
index 46e9f9f4..53dfd7c5 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -2,6 +2,7 @@
2 2
3let 3let
4 luaPam = pkgs.callPackage ./custom/luaPam.nix {}; 4 luaPam = pkgs.callPackage ./custom/luaPam.nix {};
5 luaPosix = pkgs.callPackage ./custom/luaPosix.nix {};
5in { 6in {
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