feat: Remove |> op from config to disable pipe-operator feature
This commit is contained in:
parent
b418f7ca4b
commit
0bdc1f142c
12 changed files with 167 additions and 121 deletions
|
|
@ -17,14 +17,22 @@ in
|
|||
programs.alacritty = {
|
||||
enable = true;
|
||||
package = pkgs.alacritty_git;
|
||||
settings = (./alacritty.toml |> builtins.readFile |> builtins.fromTOML) // {
|
||||
colors = lib.mkForce { };
|
||||
font.size = lib.mkForce 16;
|
||||
window.opacity = lib.mkForce 0.8;
|
||||
general.import = [
|
||||
"${pkgs.alacritty-theme}/share/alacritty-theme/gruvbox_dark.toml"
|
||||
];
|
||||
};
|
||||
settings =
|
||||
(
|
||||
with lib;
|
||||
pipe ./alacritty.toml [
|
||||
builtins.readFile
|
||||
builtins.fromTOML
|
||||
]
|
||||
)
|
||||
// {
|
||||
colors = lib.mkForce { };
|
||||
font.size = lib.mkForce 16;
|
||||
window.opacity = lib.mkForce 0.8;
|
||||
general.import = [
|
||||
"${pkgs.alacritty-theme}/share/alacritty-theme/gruvbox_dark.toml"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue