diff --git a/src/main.rs b/src/main.rs index 07e809f..54544e6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -212,7 +212,6 @@ fn main() { println!(""); println!("Use the full drive path such as /dev/nvme0n1 or /dev/sda"); - println!("If you're on the Lemur nvme1n1 is the test drive"); println!(""); println!("Which drive do we want to use for this installation?: {}", drive_name); @@ -247,9 +246,7 @@ fn main() { // Copies the nix files to /mnt/etc/nixos/ let _nix_copy = Command::new("mv") - .arg("flake.nix") - .arg("configuration.nix") - .arg("home.nix") + .args(["flake.nix", "configration.nix", "home.nix"]) .arg("/mnt/etc/nixos") .output() .expect("Failed to copy nix files over"); @@ -288,8 +285,7 @@ fn main() { // Copies the system nix files to /mnt/etc/nixos/ let _garrus_nix_copy = Command::new("cp") - .arg("garrus.nix") - .arg("gnome.nix") + .args(["garrus.nix", "gnome.nix"]) .arg("/mnt/etc/nixos") .output() .expect("Failed to copy nix files over");