feat: don't use swayosd on macos
This commit is contained in:
@@ -16,7 +16,8 @@ in {
|
||||
|
||||
services.kdeconnect.enable = linux_gui;
|
||||
services.kdeconnect.indicator = linux_gui;
|
||||
home.packages = with pkgs; [
|
||||
home.packages = with pkgs;
|
||||
lib.optionals linux_gui [
|
||||
ncpamixer
|
||||
];
|
||||
# services.swayosd.enable = linux_gui;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{...}: {
|
||||
{device, ...}: {
|
||||
services.swaync = {
|
||||
enable = true;
|
||||
enable = device.name == "ryu";
|
||||
settings = {
|
||||
notification-inline-replies = true;
|
||||
cssPriority = "user";
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{...}: {
|
||||
services.swayosd.enable = true;
|
||||
{device, ...}: {
|
||||
services.swayosd.enable = device.name == "ryu";
|
||||
}
|
||||
|
||||
@@ -497,6 +497,9 @@ in {
|
||||
inlayHints = {
|
||||
typeHints.enable = false;
|
||||
};
|
||||
check = {
|
||||
features = ["default"];
|
||||
};
|
||||
files.exclude = [
|
||||
".cargo/"
|
||||
".direnv/"
|
||||
@@ -509,15 +512,15 @@ in {
|
||||
};
|
||||
};
|
||||
};
|
||||
onAttach =
|
||||
/*
|
||||
lua
|
||||
*/
|
||||
''
|
||||
if client.server_capabilities.inlayHintProvider then
|
||||
vim.lsp.inlay_hint.enable(true)
|
||||
end
|
||||
'';
|
||||
# onAttach =
|
||||
# /*
|
||||
# lua
|
||||
# */
|
||||
# ''
|
||||
# if client.server_capabilities.inlayHintProvider then
|
||||
# vim.lsp.inlay_hint.enable(true)
|
||||
# end
|
||||
# '';
|
||||
};
|
||||
# blink-cmp = {
|
||||
# enable = false;
|
||||
|
||||
Reference in New Issue
Block a user