dotfiles/nix/home-manager/modules/alacritty/default.nix
2021-02-28 18:14:01 +01:00

12 lines
238 B
Nix

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib }:
{ config, lib, ... }:
{
home.packages = with nixpkgs; [
alacritty
];
home.file = {
".config/alacritty/alacritty.yaml".source = ./alacritty.yaml;
};
}