selfhostable, read-only reddit client
16
fork

Configure Feed

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

fmt

Akshay 9914e4bf 33e89cce

+2 -3
+2 -3
flake.nix
··· 7 7 self, 8 8 nixpkgs, 9 9 }: let 10 - supportedSystems = ["x86_64-linux" "aarch64-linux" "aarch64-darwin" ]; 10 + supportedSystems = ["x86_64-linux" "aarch64-linux" "aarch64-darwin"]; 11 11 forAllSystems = nixpkgs.lib.genAttrs supportedSystems; 12 12 nixpkgsFor = forAllSystems (system: 13 13 import nixpkgs { ··· 127 127 }; 128 128 129 129 config = mkIf config.services.readit.enable { 130 - nixpkgs.overlays = [ self.overlays.default ]; 130 + nixpkgs.overlays = [self.overlays.default]; 131 131 systemd.services.readit = { 132 132 description = "readit service"; 133 133 wantedBy = ["multi-user.target"]; ··· 137 137 ExecStart = "${pkgs.readit}/bin/readit"; 138 138 Restart = "always"; 139 139 }; 140 - 141 140 142 141 # If the binary needs specific environment variables, set them here 143 142 environment = {