puter/common/puter.nix
2025-03-01 22:21:00 +01:00

13 lines
214 B
Nix

{
pkgs,
self,
...
}: {
environment = {
systemPackages = [
self.packages.${pkgs.system}.puter
];
sessionVariables.PUTER_FLAKEREF = "git+https://forgejo@tea.wrz.one/lukas/puter.git";
};
}