No matches.
Import-resolving Nix IR plugin
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
# Test dynamic attribute names
let
key = "mykey";
value = 42;
in {
# Dynamic attribute with string interpolation
"${key}" = value;
# Another dynamic attribute
"${key}_suffix" = value + 1;
# Static attribute for comparison
static = 100;
}