{ pkgs, lib, config, userName, ... }: let inherit (lib) listToAttrs nameValuePair; xmobar = import ./xmobar pkgs.haskellPackages; cfg = config.home-manager.users.${userName}; autossh-socks-script = pkgs.writeScript "autossh" '' #!${pkgs.zsh}/bin/zsh -xe host="''${1%:*}" port="''${1#*:}" typeset -a cmd cmd=() if [[ -n "''${SSHPASS_SECRET}" ]]; then cmd+=(${pkgs.sshpassSecret}/bin/sshpass-secret) cmd+=("''${(@s/:/)SSHPASS_SECRET}") cmd+=(--) fi cmd+=(${pkgs.openssh}/bin/ssh -vN -D localhost:''${port} "''${host}") ( exec -a "''${cmd[1]}" -- ''${cmd} ) & pid=$! newpid="" i=200 while ! newpid=$(${pkgs.lsof}/bin/lsof -Pi @localhost:"''${port}" -sTCP:LISTEN -t); do if ! kill -0 "''${pid}"; then wait "''${pid}" exit $? fi [[ "''${i}" -gt 0 ]] || exit 1 i=$((''${i} - 1)) ${pkgs.coreutils}/bin/sleep 0.1 done ${config.systemd.package}/bin/systemd-notify --ready wait "''${pid}" "''${newpid}" ''; in { tmpfiles.rules = [ "e /home/gkleen/screenshots - - - 365d -" "d /home/gkleen/.cache/qalc-fuzzel - - - 1d -" ]; services = { sync-keepass = { Service = { Type = "oneshot"; WorkingDirectory = "~"; ExecStart = toString (pkgs.writers.writePython3 "sync-keepass" { libraries = with pkgs.python3Packages; [ python-dateutil ]; } '' import json import subprocess from os.path import (expanduser, getmtime, dirname) from datetime import datetime from dateutil.tz import tzlocal from dateutil.parser import isoparse from sys import stderr remote_fs = 'surtr' remote_file = 'store.kdbx' target_file = expanduser('~/store.kdbx') meta_file = expanduser('~/.store.kdbx.json') upload_time = None our_last_upload_time = None mod_time = None def get_upload_time(): upload_time = None with subprocess.Popen(['rclone', 'lsjson', f'{remote_fs}:{dirname(remote_file)}'], stdout=subprocess.PIPE) as proc: # noqa: E501 for file in json.load(proc.stdout): if file['Path'] != remote_file: continue else: upload_time = isoparse(file['ModTime']) break return upload_time def do_upload(): print('Uploading', file=stderr) subprocess.run(['rclone', 'copy', '-I', target_file, f'{remote_fs}:{dirname(remote_file)}'], check=True) # noqa: E501 upload_time = get_upload_time() with open(meta_file, 'w') as file: json.dump({'our_last_upload_time': upload_time.isoformat()}, file) def do_download(): print('Downloading', file=stderr) subprocess.run(['rclone', 'copy', '-I', f'{remote_fs}:{remote_file}', dirname(target_file)], check=True) # noqa: E501 upload_time = get_upload_time() try: with open(meta_file, 'r') as file: file_content = json.load(file) our_last_upload_time = isoparse(file_content['our_last_upload_time']) # noqa: E501 except FileNotFoundError: pass try: mod_time = datetime.fromtimestamp(getmtime(target_file)).replace(tzinfo=tzlocal()) # noqa: E501 except FileNotFoundError: pass if upload_time is None or (mod_time is not None and mod_time > upload_time): # noqa: E501 do_upload() elif upload_time is not None and (mod_time is None or upload_time > mod_time) and (our_last_upload_time is None or upload_time > our_last_upload_time): # noqa: E501 do_download() ''); Environment = [ "RCLONE_PASSWORD_COMMAND=\"${pkgs.coreutils}/bin/cat ${config.sops.secrets.gkleen-rclone.path}\"" "PATH=${pkgs.rclone}/bin" ]; }; }; emacs = { Unit = { After = ["graphical-session-pre.target"]; }; }; dunst = { Service = { ExecStart = lib.mkForce "${cfg.services.dunst.package}/bin/dunst"; Restart = "always"; }; Install = { WantedBy = ["graphical-session.target"]; }; }; keepassxc = { Service = { Type = "dbus"; BusName = "org.keepassxc.KeePassXC.MainWindow"; WorkingDirectory = "~"; ExecStart = "${pkgs.keepassxc}/bin/keepassxc"; Environment = [ "QT_QPA_PLATFORM=wayland" ]; }; Unit = { Requires = ["graphical-session-pre.target"]; After = ["graphical-session-pre.target"]; }; }; mpris-proxy = { Unit.Description = "Mpris proxy"; Unit.After = [ "network.target" "sound.target" ]; Service.ExecStart = "${pkgs.bluez}/bin/mpris-proxy"; Install.WantedBy = [ "default.target" ]; }; "autossh-socks@proxy.mathw0h:8119" = { Service = { Type = "notify"; NotifyAccess = "all"; WorkingDirectory = "~"; Restart = "always"; RestartSec = "23s"; ExecStart = "${autossh-socks-script} \"%I\""; Environment = [ "SSHPASS_SECRET=gkleen@mathw0g.math.lmu.de" ]; }; Unit = { StopWhenUnneeded = true; StartLimitInterval = "180s"; StartLimitBurst = 7; }; }; "autossh-socks@proxy.vidhar:8121" = { Service = { Type = "notify"; NotifyAccess = "all"; WorkingDirectory = "~"; Restart = "always"; RestartSec = "2s"; ExecStart = "${autossh-socks-script} \"%I\""; }; Unit = { StopWhenUnneeded = true; }; }; swayidle = { Service = { RuntimeDirectory = "swayidle"; }; }; psi-notify = { Install = { WantedBy = ["graphical-session.target"]; }; Unit = { Requires = ["graphical-session-pre.target"]; After = ["graphical-session-pre.target"]; }; Service = { ExecStart = lib.getExe pkgs.psi-notify; ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; Type = "notify"; Restart = "always"; WatchdogSec = "2s"; }; }; polkit-gnome-authentication-agent-1 = { Install = { WantedBy = ["graphical-session.target"]; }; Unit = { PartOf = ["graphical-session.target"]; Requires = ["graphical-session-pre.target"]; After = ["graphical-session-pre.target"]; }; Service = { ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; Restart = "on-failure"; }; }; gtklock = { Unit = { Requisite = ["graphical-session.target"]; PartOf = ["graphical-session.target"]; }; Service = { Type = "notify"; RuntimeDirectory = "gtklock"; CacheDirectory = "gtklock"; ExecStartPre = [ "${pkgs.libsForQt5.qt5.qttools.bin}/bin/qdbus org.keepassxc.KeePassXC.MainWindow /keepassxc org.keepassxc.KeePassXC.MainWindow.lockAllDatabases" "${config.systemd.package}/bin/systemctl --user stop gpg-agent.service" (pkgs.writeShellScript "generate-css" '' set -x export PATH="${lib.makeBinPath [cfg.programs.wpaperd.package pkgs.jq pkgs.coreutils pkgs.imagemagick pkgs.findutils]}:$PATH" declare -A monitors monitors=() while IFS= read -r entry; do path=$(jq -r ".path" <<<"$entry") [[ -z "$path" || ! -f "$path" ]] && continue blurred_path="$CACHE_DIRECTORY"/"$(b2sum -l 128 <<<"$path" | cut -d' ' -f1)"."''${path##*.}" monitor=$(jq -r ".display" <<<"$entry") if [[ ! -f "$blurred_path" ]]; then mkdir -p "$(dirname "$blurred_path")" magick "$path" -filter Gaussian -resize 6.25% -define filter:sigma=2.5 -resize 1600% "$blurred_path" & fi monitors+=([$monitor]="$blurred_path") done < <(wpaperctl all-wallpapers -j | jq -c ".[]") wait cp --no-preserve=mode ${pkgs.writeText "gtklock.css" '' #window-box { padding: 64px; /* border: 1px solid black; */ border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.8) 0px 4px 12px; /* background-color: white; */ background-color: rgba(0, 0, 0, 0.5); } ''} "$RUNTIME_DIRECTORY"/style.css for monitor in "''${!monitors[@]}"; do cat >>"$RUNTIME_DIRECTORY"/style.css <