{ config, lib, pkgs, ... }: with lib; let cfg = config.security.pam.mount; oflRequired = cfg.logoutHup || cfg.logoutTerm || cfg.logoutKill; fake_ofl = pkgs.writeShellScriptBin "fake_ofl" '' SIGNAL=$1 MNTPT=$2 ${pkgs.lsof}/bin/lsof | ${pkgs.gnugrep}/bin/grep $MNTPT | ${pkgs.gawk}/bin/awk '{print $2}' | ${pkgs.findutils}/bin/xargs ${pkgs.util-linux}/bin/kill -$SIGNAL ''; anyPamMount = any (attrByPath ["pamMount"] false) (attrValues config.security.pam.services); in { options = { security.pam.mount = { enable = mkOption { type = types.bool; default = false; description = lib.mdDoc '' Enable PAM mount system to mount filesystems on user login. ''; }; extraVolumes = mkOption { type = types.listOf types.str; default = []; description = lib.mdDoc '' List of volume definitions for pam_mount. For more information, visit . ''; }; additionalSearchPaths = mkOption { type = types.listOf types.package; default = []; example = literalExpression "[ pkgs.bindfs ]"; description = lib.mdDoc '' Additional programs to include in the search path of pam_mount. Useful for example if you want to use some FUSE filesystems like bindfs. ''; }; cryptMountOptions = mkOption { type = types.listOf types.str; default = []; example = literalExpression '' [ "allow_discard" ] ''; description = lib.mdDoc '' Global mount options that apply to every crypt volume. You can define volume-specific options in the volume definitions. ''; }; fuseMountOptions = mkOption { type = types.listOf types.str; default = []; example = literalExpression '' [ "nodev" "nosuid" "force-user=%(USER)" "gid=%(USERGID)" "perms=0700" "chmod-deny" "chown-deny" "chgrp-deny" ] ''; description = lib.mdDoc '' Global mount options that apply to every FUSE volume. You can define volume-specific options in the volume definitions. ''; }; debugLevel = mkOption { type = types.int; default = 0; example = 1; description = lib.mdDoc '' Sets the Debug-Level. 0 disables debugging, 1 enables pam_mount tracing, and 2 additionally enables tracing in mount.crypt. The default is 0. For more information, visit . ''; }; logoutWait = mkOption { type = types.int; default = 0; description = lib.mdDoc '' Amount of microseconds to wait until killing remaining processes after final logout. For more information, visit . ''; }; logoutHup = mkOption { type = types.bool; default = false; description = lib.mdDoc '' Kill remaining processes after logout by sending a SIGHUP. ''; }; logoutTerm = mkOption { type = types.bool; default = false; description = lib.mdDoc '' Kill remaining processes after logout by sending a SIGTERM. ''; }; logoutKill = mkOption { type = types.bool; default = false; description = lib.mdDoc '' Kill remaining processes after logout by sending a SIGKILL. ''; }; createMountPoints = mkOption { type = types.bool; default = true; description = lib.mdDoc '' Create mountpoints for volumes if they do not exist. ''; }; removeCreatedMountPoints = mkOption { type = types.bool; default = true; description = lib.mdDoc '' Remove mountpoints created by pam_mount after logout. This only affects mountpoints that have been created by pam_mount in the same session. ''; }; }; }; config = mkIf (cfg.enable || anyPamMount) { environment.systemPackages = [ pkgs.pam_mount ]; environment.etc."security/pam_mount.conf.xml" = { source = let extraUserVolumes = filterAttrs (n: u: u.cryptHomeLuks != null || u.pamMount != {}) config.users.users; mkAttr = k: v: ''${k}="${v}"''; userVolumeEntry = user: let attrs = { user = user.name; path = user.cryptHomeLuks; mountpoint = user.home; } // user.pamMount; in "\n"; in pkgs.writeText "pam_mount.conf.xml" '' ${makeBinPath ([ pkgs.util-linux ] ++ cfg.additionalSearchPaths)} ${pkgs.fuse}/bin/mount.fuse %(VOLUME) %(MNTPT) -o ,${concatStringsSep "," (cfg.fuseMountOptions ++ [ "%(OPTIONS)" ])}' ${pkgs.fuse}/bin/fusermount -u %(MNTPT) ${pkgs.pam_mount}/bin/mount.crypt -o ,${concatStringsSep "," (cfg.cryptMountOptions ++ [ "%(OPTIONS)" ])} %(VOLUME) %(MNTPT) ${pkgs.pam_mount}/bin/umount.crypt %(MNTPT) ${pkgs.pam_mount}/bin/pmvarrun -u %(USER) -o %(OPERATION) ${optionalString oflRequired "${fake_ofl}/bin/fake_ofl %(SIGNAL) %(MNTPT)"} ${concatStrings (map userVolumeEntry (attrValues extraUserVolumes))} ${concatStringsSep "\n" cfg.extraVolumes} ''; }; }; }