add hyprland and greetd

This commit is contained in:
afoucaultc 2026-08-08 13:33:07 +02:00
parent 7a6da71236
commit 77b3ecebb7
22 changed files with 84 additions and 321 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
services.protonmail-bridge = {
enable = true;
};
systemd.user.services.protonmail-bridge.serviceConfig = {
ExecStartPre = "${pkgs.bash}/bin/bash -c 'until ${pkgs.systemd}/bin/busctl --user list | grep -q org.freedesktop.secrets; do sleep 1; done'";
RestartSec = "10s";
};
}