ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

stop passing paths that end with "flake.nix" as a flake

+1 -1
+1 -1
wire/lib/src/hive/mod.rs
··· 98 98 Some("hive.nix") => HiveLocation::HiveNix(path.clone()), 99 99 Some(_) => { 100 100 if fs::metadata(path.join("flake.nix")).is_ok() { 101 - HiveLocation::Flake(path.join("flake.nix").display().to_string()) 101 + HiveLocation::Flake(path.display().to_string()) 102 102 } else { 103 103 HiveLocation::HiveNix(path.join("hive.nix")) 104 104 }