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

10 lines
219 B
Nix
Raw Normal View History

2023-04-27 01:08:20 +02:00
{ 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 💀
];
}