flake.nix: system -> stdenv.hostPlatform.system

This commit is contained in:
2026-01-18 05:14:49 +09:00
parent c7011c8c8e
commit 3b93261ada

View File

@@ -42,7 +42,7 @@
});
overlays.default = final: prev: {
qotd = self.packages.${prev.system}.default;
qotd = self.packages.${prev.stdenv.hostPlatform.system}.default;
};
nixosModules.default = ./nix/module.nix;