powerful but friendly backup program that runs in your tray, powered by restic devins.page/restray
go restic system-tray
2

Configure Feed

Select the types of activity you want to include in your feed.

chore: clean up unnecessary deps in flake

this stuff was only needed when we weren't using fyne's systray

intergrav (Jul 1, 2026, 10:13 PM EDT) 62c6588a a0d2008b

+15 -20
+15 -20
flake.nix
··· 35 35 CGO_LDFLAGS = "-mmacosx-version-min=11.0"; 36 36 }; 37 37 38 - nativeBuildInputs = pkgs.lib.optionals (!isDarwin) [pkgs.pkg-config] ++ [pkgs.installShellFiles]; 39 - buildInputs = pkgs.lib.optionals (!isDarwin) [pkgs.glib]; 38 + nativeBuildInputs = [pkgs.installShellFiles]; 40 39 41 40 postInstall = '' 42 41 ${ ··· 77 76 }; 78 77 79 78 devShells.default = pkgs.mkShell { 80 - packages = with pkgs; 81 - [ 82 - go 83 - gotools # goimports 84 - go-tools # staticcheck 79 + packages = with pkgs; [ 80 + go 81 + gotools # goimports 82 + go-tools # staticcheck 85 83 86 - gcc 87 - zig 84 + gcc 85 + zig 88 86 89 - # only needed for packaging and icon gen 90 - just 91 - nsis 92 - perl 93 - libicns 94 - imagemagick 95 - oxipng 96 - ] 97 - ++ lib.optionals (!isDarwin) [ 98 - pkg-config 99 - ]; 87 + # only needed for packaging and icon gen 88 + just 89 + nsis 90 + perl 91 + libicns 92 + imagemagick 93 + oxipng 94 + ]; 100 95 }; 101 96 }); 102 97 }