1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 08:10:43 +01:00

style: switch to nixfmt-rfc-style

This commit is contained in:
Ryan Cao 2024-06-17 10:52:56 +08:00
parent 3404601a4a
commit 02e3e3a7ac
Signed by: ryanccn
SSH key fingerprint: SHA256:NtP/BlVhoQq4xU6BEcZeT8nIPvHntkJ3lIc2yB+F09E
17 changed files with 117 additions and 112 deletions

View file

@ -20,22 +20,22 @@ _: {
"ttfautohint"
];
casks = let
noQuarantine = name: {
inherit name;
args = {
no_quarantine = true;
casks =
let
noQuarantine = name: {
inherit name;
args = {
no_quarantine = true;
};
};
};
in [
"blackhole-16ch"
(noQuarantine "eloston-chromium")
"sf-symbols"
"1password/tap/1password-cli"
];
in
[
"blackhole-16ch"
(noQuarantine "eloston-chromium")
"sf-symbols"
"1password/tap/1password-cli"
];
taps = [
"1password/tap"
];
taps = [ "1password/tap" ];
};
}