Skip to content

Commit

Permalink
azure-image: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
codgician committed Nov 29, 2024
1 parent c0c42af commit cd60b01
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion nixos/modules/virtualisation/azure-image.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,18 @@ with lib;
let
cfg = config.virtualisation.azureImage;
# https://wiki.archlinux.org/index.php/fstab#Filepath_spaces
escape = string: builtins.replaceStrings [ " " "\t" ] [ "\\040" "\\011" ] string;
escape =
string:
builtins.replaceStrings
[
" "
"\t"
]
[
"\\040"
"\\011"
]
string;
in
{
imports = [
Expand Down

0 comments on commit cd60b01

Please sign in to comment.