Skip to content

Commit

Permalink
Run ./fix.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
cdo256 committed Jan 13, 2025
1 parent c325b1b commit d2e52bb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/nixos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,11 @@ pub fn get_final_attr(build_vm: bool, with_bootloader: bool) -> String {
String::from(attr)
}

pub fn toplevel_for<S: AsRef<str>>(hostname: S, installable: Installable, final_attr: String) -> Installable {
pub fn toplevel_for<S: AsRef<str>>(
hostname: S,
installable: Installable,
final_attr: String,
) -> Installable {
let mut res = installable.clone();
let hostname = hostname.as_ref().to_owned();

Expand Down

0 comments on commit d2e52bb

Please sign in to comment.