puter/common/puter.nix

13 lines
214 B
Nix
Raw Normal View History

2025-01-04 22:51:35 +00:00
{
pkgs,
self,
...
}: {
2025-03-01 21:21:00 +00:00
environment = {
systemPackages = [
self.packages.${pkgs.system}.puter
];
sessionVariables.PUTER_FLAKEREF = "git+https://forgejo@tea.wrz.one/lukas/puter.git";
};
2024-12-28 23:06:13 +00:00
}