Skip to content

Instantly share code, notes, and snippets.

@graham33
Created March 21, 2023 08:49
Show Gist options
  • Save graham33/fdbdcc18317a621d9dd54beb36be6683 to your computer and use it in GitHub Desktop.
Save graham33/fdbdcc18317a621d9dd54beb36be6683 to your computer and use it in GitHub Desktop.
{ config, lib, pkgs, ... }:
# A temporary hack to `loginctl enable-linger $somebody` (for
# multiplexer sessions to last), until this one is unresolved:
# https://github.com/NixOS/nixpkgs/issues/3702
#
# Usage: `users.extraUsers.somebody.linger = true` or slt.
with lib;
let
dataDir = "/var/lib/systemd/linger";
lingeringUsers = map (u: u.name) (attrValues (flip filterAttrs config.users.users (n: u: u.linger)));
lingeringUsersFile = builtins.toFile "lingering-users"
(concatStrings (map (s: "${s}\n")
(sort (a: b: a < b) lingeringUsers))); # this sorting is important for `comm` to work correctly
updateLingering = ''
if [ -e ${dataDir} ] ; then
ls ${dataDir} | sort | comm -3 -1 ${lingeringUsersFile} - | xargs -r ${pkgs.systemd}/bin/loginctl disable-linger
ls ${dataDir} | sort | comm -3 -2 ${lingeringUsersFile} - | xargs -r ${pkgs.systemd}/bin/loginctl enable-linger
fi
'';
userOptions = {
options.linger = mkEnableOption "Lingering for the user";
};
in
{
options = {
users.users = mkOption {
type = with types; attrsOf (submodule userOptions);
};
};
config = {
system.activationScripts.update-lingering = stringAfter [ "users" ] updateLingering;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment