Igor Pashev

Results 49 issues of Igor Pashev

Hetzner machines can't be evaluated/built without actual deploy, because `boot.loader.grub.devices` and `fileSystems` get known only after the machines are created. ``` Failed assertions: - The ‘fileSystems’ option does not specify...

AFAIK, default partitioning creates two independent swaps: ``` part swap1 --recommended --label=swap1 --fstype=swap --ondisk=sda part swap2 --recommended --label=swap2 --fstype=swap --ondisk=sdb ``` _When_ one of the drives fails, the systems can...

We can define `resources.ec2KeyPairs` and refer them in `deployment.ec2`. E. g.: ``` nix { # ... resources.ec2KeyPairs.petcatKey = { inherit accessKeyId; region = "ap-southeast-1"; }; # ... petcat = {...

Back to NixOS/nixops#221: Private IP should be used if `ec2.associatePublicIpAddress` is not `true` (done) _or_ `elasticIPv4` is not set (should be done).

After ec2 infrastructure is created, I want just to deploy stuff. Unfortunately nixops bails out if not provided with aws credentials. By the way, Hetzner backend supports this workflow. Nixops...

The multicols environment has a mandatory argument - number of columns. It is incorrectly parsed as plain string. Wrap multicols content into nested divs. Signed-off-by: Igor Pashev

While working on a library to access TOML data via a "TOML path" like `foo[1].bar`, similar to [toml-cli](https://github.com/gnprice/toml-cli), we found convenient to reuse the `Key` struct. At the same time,...

C-enhancement
A-output

Basic (`"in double quotes"`) strings are more powerful than literal (`'in single quotes'`) strings in representing keys, and unquoted (bare) strings are the least powerful. This seems reasonable to prefer...