Jacek Galowicz
Jacek Galowicz
Hi, i have the following configuration: ```nix # disko config { lib, ... }: { disko.devices.disk = (lib.genAttrs [ "/dev/sda" ] (disk: { type = "disk"; device = disk; content...
when we destroy all partition info using `wipefs` we don't need all the `-y` flags etc. to confirm the partitioning commangs.
We should use something like ```bash destinationDisk=$(lsblk -bl -J | \ jq -r '.blockdevices | map(select(.type == "disk")) | max_by(.size) | .name' ``` instead of hardcoding `/dev/sda`
Hi, the test seem to be broken for some time now. I hope someone could look at it and fix them. We're shipping this plugin in nixpkgs, but are disabling...
closes #1012 cc @fricklerhandwerk
**Describe the bug** Starting with https://github.com/open-source-parsers/jsoncpp/commit/30170d651c108400b1b9ed626ba715a5d95c5fd2, the library uses memset_s for the secure string allocator. This is problematic, because: - not all compilers implement `memset_s` - the commit suggests this...
I'm editing a lot of nix and example files and this leads to too many rebuilds of the rust package. It seems like the source filtering is not as tight...
Hi, in function `send_scouting` in file https://github.com/rosenpass/rosenpass/blob/de51c1005f476d15f242fce9d9903245307b718f/rosenpass/src/app_server.rs#L493, it can happen that the iterator of the inner loop appears empty if a foregoing iteration of the outer loop resulted in an...