infinisil changed the topic of #nix-lang to: Channel for discussing Nix as a language - https://nixos.org/nix/manual/#chap-writing-nix-expressions - Logs: https://logs.nix.samueldr.com/nix-lang/
rajivr has joined #nix-lang
Dotz0cat has quit [*.net *.split]
Dotz0cat has joined #nix-lang
jtojnar has quit [Ping timeout: 246 seconds]
awaxa has quit [Ping timeout: 260 seconds]
kalbasit[m] has quit [Ping timeout: 240 seconds]
colemickens has quit [Ping timeout: 260 seconds]
chvp has quit [Ping timeout: 246 seconds]
mvnetbiz_ has quit [Ping timeout: 240 seconds]
siraben has quit [Ping timeout: 268 seconds]
colemickens has joined #nix-lang
awaxa has joined #nix-lang
jtojnar has joined #nix-lang
kalbasit[m] has joined #nix-lang
siraben has joined #nix-lang
chvp has joined #nix-lang
rmdashrf_ has quit [Ping timeout: 256 seconds]
rmdashrf has joined #nix-lang
__monty__ has joined #nix-lang
rajivr has quit [Quit: Connection closed for inactivity]
__monty__ has quit [Quit: leaving]
<jtojnar> can list of unused function arguments be discovered statically?
<jtojnar> I was worried about the following but the dynamic binding actually seems to be ignored:
<jtojnar> > let foo = "static"; varname = "foo"; in (rec { ${varname} = "dynamic"; body = foo; }).body
<{^_^}> "static"
<sterni> :|