brewery
notashelf /
e8fcaccacca58cacc6c7ad1e395da5d6d664fb51

nixir

public

Import-resolving Nix IR plugin

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
tests/home_path.nixNix11 lines304 B
1
# Test home-relative paths
2
# Note: This will resolve to the actual home directory at evaluation time
3
let
4
  # Example home path (will be expanded by evaluator)
5
  config = ~/..config;
6
  file = ~/.bashrc;
7
in {
8
  # These are just path values that will be expanded
9
  configPath = config;
10
  filePath = file;
11
}