1
0
Fork 0

Enable linger

This commit is contained in:
Malte Brandy 2018-06-07 00:36:55 +02:00
parent b670f92b52
commit 3ec021a02e
3 changed files with 46 additions and 0 deletions

View file

@ -4,6 +4,7 @@ let
in {
users.users = {
"${me.user}" = {
linger = true;
description = me.name;
isNormalUser = true;
uid = 1000;

View file

@ -11,6 +11,7 @@
./admin.nix
./syncthing.nix
./modules/cdarknet
./modules/loginctl-linger.nix
];
i18n = {

View file

@ -0,0 +1,44 @@
{ 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 = pkgs.writeScript "update-lingering" ''
# Stop when the system is not running, e.g. during nixos-install
[[ -e /run/booted-system ]] || exit 0
lingering=$(ls ${dataDir} 2> /dev/null | sort)
echo "$lingering" | comm -3 -1 ${lingeringUsersFile} - | xargs -r ${pkgs.systemd}/bin/loginctl disable-linger
echo "$lingering" | comm -3 -2 ${lingeringUsersFile} - | xargs -r ${pkgs.systemd}/bin/loginctl enable-linger
'';
in
{
options = {
users.users = mkOption {
options = [{
linger = mkEnableOption "lingering for the user";
}];
};
};
config = {
system.activationScripts.update-lingering =
stringAfter [ "users" ] updateLingering;
};
}