diff --git a/src/main.rs b/src/main.rs index ee0addb..0ec2d6e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -66,7 +66,7 @@ fn format_partitions() { fn grab_flake() { let mut easy = Easy::new(); - easy.url("https://gitlab.com/ahoneybun/nix-configs/-/raw/main/flake.nix").unwrap(); + easy.url("https://gitlab.com/ahoneybun/nix-configs/-/raw/rust-rewrite/flake.nix").unwrap(); let mut file = File::create("flake.nix").unwrap(); @@ -82,7 +82,7 @@ fn grab_flake() { fn grab_config() { let mut easy = Easy::new(); - easy.url("https://gitlab.com/ahoneybun/nix-configs/-/raw/main/configuration.nix").unwrap(); + easy.url("https://gitlab.com/ahoneybun/nix-configs/-/raw/rust-rewrite/configuration.nix").unwrap(); let mut file = File::create("configuration.nix").unwrap(); @@ -98,7 +98,7 @@ fn grab_config() { fn grab_home() { let mut easy = Easy::new(); - easy.url("https://gitlab.com/ahoneybun/nix-configs/-/raw/main/home.nix").unwrap(); + easy.url("https://gitlab.com/ahoneybun/nix-configs/-/raw/rust-rewrite/home.nix").unwrap(); let mut file = File::create("home.nix").unwrap();