Skip to content

Commit

Permalink
Fix bad rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoverbear committed Sep 13, 2023
1 parent d29b58d commit 6c92aec
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/action/common/place_nix_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,14 @@ impl PlaceNixConfiguration {
};

// https://github.com/DeterminateSystems/nix-installer/issues/449#issuecomment-1551782281
<<<<<<< HEAD
#[cfg(not(target_os = "macos"))]
settings.insert("auto-optimise-store".to_string(), "true".to_string());

settings.insert(
"bash-prompt-prefix".to_string(),
"(nix:$name)\\040".to_string(),
);
=======
defaults_conf_settings.push(("bash-prompt-prefix", "(nix:$name)\\040".into()));
defaults_conf_settings.push(("max-jobs", "auto".into()));
defaults_conf_settings.push(("extra-nix-path", "nixpkgs=flake:nixpkgs".into()));
>>>>>>> f938f56 (Set max-jobs in nix.conf)
settings.insert("max-jobs".to_string(), "auto".to_string());
if let Some(ssl_cert_file) = ssl_cert_file {
let ssl_cert_file_canonical = ssl_cert_file
.canonicalize()
Expand Down

0 comments on commit 6c92aec

Please sign in to comment.