fd519c825f
Change-Id: I73e91a0abeec013445d0b14867e38637b2a9397f Reviewed-on: https://cl.tvl.fyi/c/depot/+/5334 Reviewed-by: Profpatsch <mail@profpatsch.de> Tested-by: BuildkiteCI
29 lines
538 B
Nix
29 lines
538 B
Nix
{ depot, pkgs, lib, ... }:
|
|
|
|
let
|
|
bins = depot.nix.getBins pkgs.alacritty [ "alacritty" ];
|
|
|
|
config = lib.pipe { } [
|
|
(_: depot.users.Profpatsch.importDhall.importDhall {
|
|
root = ./.;
|
|
files = [
|
|
"alacritty.dhall"
|
|
"solarized.dhall"
|
|
];
|
|
main = "alacritty.dhall";
|
|
deps = [ ];
|
|
})
|
|
(lib.generators.toYAML { })
|
|
(pkgs.writeText "alacritty.conf")
|
|
];
|
|
|
|
|
|
alacritty = depot.nix.writeExecline "alacritty" { } [
|
|
bins.alacritty
|
|
"--config-file"
|
|
config
|
|
"$@"
|
|
];
|
|
|
|
in
|
|
alacritty
|