alacritty
This commit is contained in:
parent
0510ad5408
commit
0ea8a43135
14
modules/desktop/alacritty.nix
Normal file
14
modules/desktop/alacritty.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ home-manager, ... }: {
|
||||
# https://wiki.archlinux.org/title/Alacritty
|
||||
|
||||
home-manager.users.caspervk = {
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
key_bindings = [
|
||||
{ key = "Return"; mods = "Control|Shift"; action = "SpawnNewInstance"; }
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
./alacritty.nix
|
||||
./network.nix
|
||||
./ssh.nix
|
||||
./sway.nix
|
||||
|
|
|
@ -284,7 +284,6 @@
|
|||
security.rtkit.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
alacritty # terminal
|
||||
brightnessctl
|
||||
clipman # TODO
|
||||
gnome3.adwaita-icon-theme # cursor TODO
|
||||
|
|
Loading…
Reference in a new issue