Evie Litherland-Smith
2f60d7894c
Move nix settings to flake.nix and (hopefully) set nixpkgs to current flake
22 lines
456 B
Nix
22 lines
456 B
Nix
{ pkgs, tokyonight-folke, ... }:
|
|
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
import = [ "${tokyonight-folke}/extras/alacritty/tokyonight_night.yml" ];
|
|
window = {
|
|
dynamic_title = true;
|
|
padding = {
|
|
x = 10;
|
|
y = 10;
|
|
};
|
|
decorations = "none";
|
|
};
|
|
selection.save_to_clipboard = true;
|
|
live_config_reload = true;
|
|
mouse.hide_when_typing = true;
|
|
};
|
|
};
|
|
}
|