revert const

This commit is contained in:
Aaron Honeycutt 2025-04-11 18:02:12 -06:00
parent 049771bbac
commit 1bd5691f79

View file

@ -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");