mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
12 lines
189 B
Nix
12 lines
189 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
alacritty
|
|
];
|
|
programs.alacritty.enable = true;
|
|
programs.alacritty.settings = {
|
|
window.opacity = lib.mkForce 0.75;
|
|
};
|
|
}
|