11 lines
198 B
Nix
11 lines
198 B
Nix
|
{ inputs, ... }:
|
||
|
{
|
||
|
# Install alacritty
|
||
|
programs.alacritty.enable = true;
|
||
|
|
||
|
# Setup my config file
|
||
|
home.file = {
|
||
|
".config/alacritty/alacritty.toml".source = ./confs/alacritty.toml;
|
||
|
};
|
||
|
}
|