1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00
nixos/users/ellmau/alacritty.nix
Stefan Ellmauthaler 1e6e85ae2b
Swayfy (#5)
* switch to sway

* Add greetd pam integration, Add waybar base config

* waybar (multiple modules do not behave as documented)
* nm-applet
* systemd-integration due to "normal" call via greetd

configure mako
adding base commands for nm-applet, blueman-applet

* add kanshi

* swayconfig keybindings for special multimedia keys

* waybar base stylefile + basic modules

* Add more portals to wayland/sway and fix fonts

* Add nixosConfiguration-awareness to the homemanager module

* Add alacritty.nix for home-manager configuration

* Add formatter to flake

* Format with alejandra style

* Add apheleia to emacs

* Add local configuration to use alejandra in this flake with emacs
2022-08-22 16:39:47 +02:00

54 lines
1.2 KiB
Nix

{
config,
lib,
pkgs,
...
}: {
programs.alacritty = {
enable = true;
settings = {
window = {
decorations = "none";
};
alt_send_esc = true;
font = {
normal.family = "Hasklug Nerd Font";
size = 14;
};
# colors = {
# primary = {
# background = "#282828"; # base3
# foreground = "#dfbf8e"; # base00
# };
# cursor = {
# text = "CellBackground";
# cursor = "CellForeground";
# };
# normal = {
# black = "#665c54"; # base02
# red = "#ea6962"; # red
# green = "#a9b665"; # green
# yellow = "#e78a4e"; # yellow
# blue = "#7daea3"; # blue
# magenta = "#d3869b"; # magenta
# cyan = "#89b482"; # cyan
# white = "#dfbf8e"; # base2
# };
# bright = {
# black = "#928374"; # base03
# red = "#ea6962"; # orange
# green = "#a6b665"; # base01
# yellow = "#e3a84e"; # base00
# blue = "#7daea3"; # base0
# magenta = "#d3869b"; # violet
# cyan = "#89b482"; # base1
# white = "#dfbf8e"; # base3
# };
# };
};
};
}