tvl-depot/users/Profpatsch/alacritty.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
699 B
Nix
Raw Normal View History

{ depot, pkgs, lib, ... }:
let
bins = depot.nix.getBins pkgs.alacritty [ "alacritty" ];
config =
depot.users.Profpatsch.importDhall.importDhall {
root = ./.;
files = [
"alacritty.dhall"
"solarized.dhall"
];
main = "alacritty.dhall";
deps = [ ];
};
config-file = lib.pipe config.alacritty-config [
(lib.generators.toYAML { })
(pkgs.writeText "alacritty.conf")
];
alacritty = depot.nix.writeExecline "alacritty" { } (
(lib.concatLists (lib.mapAttrsToList (k: v: [ "export" k (toString v) ]) config.alacritty-env))
++ [
bins.alacritty
"--config-file"
config-file
"$@"
]
);
in
alacritty