1
Fork 0
satellite/home/adrielus/features/desktop/common/signal.nix
2023-04-30 04:30:15 +02:00

10 lines
245 B
Nix

{ pkgs, config, ... }: {
home.packages = [
pkgs.signal-desktop # Signal client
];
satellite.persistence.at.state.apps.Signal.directories = [
"${config.xdg.configHome}/Signal" # Why tf does signal store it's state here 💀
];
}