The world's most clever kitty cat
0
fork

Configure Feed

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

Correct attr path for default package

Ben C 6cb3b33e 0b075f44

+6 -2
+6 -2
flake.nix
··· 59 59 }; 60 60 }; 61 61 devShell = pkgs: (mkCrane pkgs).devShell {}; 62 - nixosModule = {lib, ...}: { 62 + nixosModule = { 63 + lib, 64 + pkgs, 65 + ... 66 + }: { 63 67 imports = [./nixosModule.nix]; 64 68 65 - services.bingus-bot.package = lib.mkDefault self.packages.default; 69 + services.bingus-bot.package = lib.mkDefault self.packages.${pkgs.stdenv.hostPlatform.system}.default; 66 70 }; 67 71 package = { 68 72 rustPlatform,