From 3182e823cca405ba1c1c747cc288f84848aeca4d Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Thu, 10 Apr 2025 18:58:08 -0600 Subject: [PATCH] update nix-configs to rust-rewrite branch --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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();