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:
parent
ea22491995
commit
adc3574357
@ -50,7 +50,7 @@ in
|
||||
|
||||
environment.systemPackages = if isgraphical then with pkgs; [
|
||||
firefox
|
||||
alacritty
|
||||
#alacritty
|
||||
thunderbird
|
||||
okular
|
||||
texlive.combined.scheme-full
|
||||
|
||||
14
users/ellmau/alacritty.nix
Normal file
14
users/ellmau/alacritty.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@ -12,6 +12,7 @@ in
|
||||
{
|
||||
|
||||
imports = [
|
||||
./alacritty.nix
|
||||
./autorandr.nix
|
||||
./dunst.nix
|
||||
./git.nix
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user