1
Fork 0
satellite/home/adrielus/features/desktop/common/signal.nix
2023-04-27 02:08:20 +03:00

10 lines
219 B
Nix

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