Separate alacritty from home configuration.
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
|
||||
imports = [
|
||||
inputs.hyprpanel.homeManagerModules.hyprpanel
|
||||
./programs/alacritty.nix
|
||||
./programs/bash.nix
|
||||
./programs/git.nix
|
||||
./programs/hyprlock.nix
|
||||
@@ -53,18 +54,6 @@
|
||||
EDITOR = "nano";
|
||||
};
|
||||
|
||||
programs.alacritty = lib.mkForce {
|
||||
enable = true;
|
||||
settings = {
|
||||
window.opacity = 0.05;
|
||||
# window.blur = true;
|
||||
font.normal = {
|
||||
family = "BigBlueTermPlus Nerd Font";
|
||||
style = "Regular";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
|
||||
12
nodes/hosts/common/home/jay/programs/alacritty.nix
Normal file
12
nodes/hosts/common/home/jay/programs/alacritty.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ pkgs, ...}: {
|
||||
programs.alacritty = lib.mkForce {
|
||||
enable = true;
|
||||
settings = {
|
||||
window.opacity = 0.05;
|
||||
font.normal = {
|
||||
family = "BigBlueTermPlus Nerd Font";
|
||||
style = "Regular";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user