⛩️ Powerful yet Minimal Nix Dependency Manager
flake flakes home-manager nixos go nix dependency dependencies

fix(init): initialise base empty environment on init command

fuwn.net 73339dda c04d5cd0

verified
+4 -1
+1 -1
flake.nix
··· 54 54 inherit meta; 55 55 56 56 pname = name; 57 - version = "2024.10.25"; 57 + version = "2024.11.25"; 58 58 src = pkgs.lib.cleanSource ./.; 59 59 vendorHash = "sha256-XQEB2vgiztbtLnc7BR4WTouPI+2NDQXXFUNidqmvbac="; 60 60 buildInputs = [ pkgs.musl ];
+3
internal/commands/init.go
··· 14 14 return fmt.Errorf("sources file already exists") 15 15 } 16 16 17 + sources.Sources = make(map[string]yae.Source) 18 + sources.Schema = "https://raw.githubusercontent.com/Fuwn/yae/refs/heads/main/yae.schema.json" 19 + 17 20 if c.Bool("dry-run") { 18 21 return nil 19 22 }