migrate to uv2nix
Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 7s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 2m36s
Check Nix flake / Build nix outputs (ubuntu-latest) (pull_request) Failing after 2m38s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Successful in 4m55s

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2025-03-18 18:11:42 -04:00
parent 4b7e2ef85c
commit ef9050523d
9 changed files with 454 additions and 395 deletions

View File

@ -4,10 +4,10 @@
import yaml
import pprint
with open('.sops.yaml','r') as in_yamlfile:
with open(".sops.yaml", "r") as in_yamlfile:
cur_yaml = yaml.safe_load(in_yamlfile)
cur_yaml['keys'].append('&test testkey')
cur_yaml["keys"].append("&test testkey")
pprint.pprint(cur_yaml)