Keyword: `let` Used to assign variables that can be used in an expression immediately following the let-binding. ```nix let one = 1; in { two = one + 1; } ```