mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-13 03:23:01 -06:00
revert const
This commit is contained in:
parent
049771bbac
commit
1bd5691f79
1 changed files with 2 additions and 6 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue