1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

HOME alacritty in home-manager now

This commit is contained in:
Stefan Ellmauthaler 2021-12-09 13:03:36 +01:00
parent ea22491995
commit adc3574357
3 changed files with 16 additions and 1 deletions

View File

@ -50,7 +50,7 @@ in
environment.systemPackages = if isgraphical then with pkgs; [ environment.systemPackages = if isgraphical then with pkgs; [
firefox firefox
alacritty #alacritty
thunderbird thunderbird
okular okular
texlive.combined.scheme-full texlive.combined.scheme-full

View File

@ -0,0 +1,14 @@
{ config, pkgs, lib, ... }:
{
config = lib.mkIf config.variables.graphical {
home-manager.users.ellmau.programs.alacritty = {
enable = true;
settings = {
window = {
decorations = "none";
};
alt_send_esc = true;
};
};
};
}

View File

@ -12,6 +12,7 @@ in
{ {
imports = [ imports = [
./alacritty.nix
./autorandr.nix ./autorandr.nix
./dunst.nix ./dunst.nix
./git.nix ./git.nix