1
Fork 0
satellite/home/adrielus/features/desktop/common/signal.nix

10 lines
245 B
Nix
Raw Normal View History

2023-04-30 04:30:15 +02:00
{ pkgs, config, ... }: {
2023-04-27 01:08:20 +02:00
home.packages = [
pkgs.signal-desktop # Signal client
];
2023-04-30 04:30:15 +02:00
satellite.persistence.at.state.apps.Signal.directories = [
"${config.xdg.configHome}/Signal" # Why tf does signal store it's state here 💀
2023-04-27 01:08:20 +02:00
];
}