started xmonad config

This commit is contained in:
2024-08-13 20:58:32 +09:00
parent 043c527b64
commit 3964424b46
5 changed files with 400 additions and 1 deletions

10
user/utils/alacritty.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
alacritty
];
programs.alacritty.enable = true;
programs.alacritty.settings = {
window.opacity = lib.mkForce 0.85;
};
}