Justinas Stankevičius

Results 54 comments of Justinas Stankevičius

It might be that no storage pools exist by default, until `virt-manager` creates one. Will have to look into it.

Could you elaborate on the issue? Although the masked token will be different across page (frame) loads, the unmasked token remains the same for the lifetime of the cookie, meaning...

I think I understand the issue now. `nosurf` works correctly when the user's first-interaction-ever with the website is not concurrent with any other page load on the website. However, when...

> There isn't an RFD but I'm happy to write one up. Keeping the hierarchy acyclic seems like it would be ideal, however I'm not sure if the services being...

> `v -cflags "-static" hello.v` > > Results in > > ``` > $ file hello > hello: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), statically linked, BuildID[sha1]=5218322b2e2cfe1833e376dff28d3a93ddf4c9be, for...

This is a good idea. `Token()` and `Reason()` have the signatures that they do, because nosurf predates introduction of `context.Context` (the pre Go 1.7 implementation using a global map is...

Thanks for the issue. I can immediately tell why this is happening: a recent version of Morph no longer defaults the system to `builtins.currentSystem`, instead explicitly setting `null`. https://github.com/DBCDK/morph/pull/204 This...

I think the play here is to: 1. Take the definition of the `colmena` output outside of the `flake-utils.lib.eachDefaultSystem` - I don't think having multiple, per-system colmena hives is supported...

Right. Still, try making `colmena` a single output at the top level of your flake (not per-system), i.e. not use `eachDefaultSystem` for it. If you have any *target* hosts that...

Yeah, the `colmena` output looks to be in the right place now. This does not change the fact that colmena requires `meta.nixpkgs = import { system = ... }`, as...