fix: ghostty acquire clipboard permission

This commit is contained in:
DACHXY 2025-05-05 13:14:00 +08:00
parent bb3f1b222e
commit 396a4d603d
3 changed files with 16 additions and 0 deletions

View file

@ -14,5 +14,8 @@ mouse-hide-while-typing = true
keybind = ctrl+shift+zero=toggle_tab_overview keybind = ctrl+shift+zero=toggle_tab_overview
clipboard-read = allow
clipboard-write = allow
# custom-shader = ./shader/mnoise.glsl # custom-shader = ./shader/mnoise.glsl
# custom-shader-animation = always # custom-shader-animation = always

View file

@ -7,6 +7,14 @@
... ...
}: }:
{ {
programs.poetry = {
enable = true;
settings = {
virtualenvs.create = true;
virtualenvs.in-project = true;
};
};
home.packages = home.packages =
with pkgs; with pkgs;
[ [

View file

@ -48,5 +48,10 @@
fi fi
''; '';
}; };
# mail
msmtp = {
enable = true;
};
}; };
} }