Fluffychat overlay

This commit is contained in:
Aleksandr Lebedev 2025-08-31 16:38:34 +02:00
parent 277951e25f
commit e39737f6a9
4 changed files with 12 additions and 5 deletions

View file

@ -173,7 +173,7 @@ in
hide-after-inactive-ms = 10000; hide-after-inactive-ms = 10000;
}; };
gestures.hot-corners.enable = true; gestures.hot-corners.enable = true;
prefer-no-csd = !config.custom.hardware.tablet.enable; prefer-no-csd = true;
environment = { environment = {
XDG_SESSION_TYPE = "wayland"; XDG_SESSION_TYPE = "wayland";
__GL_GSYNC_ALLOWED = "1"; __GL_GSYNC_ALLOWED = "1";

View file

@ -44,12 +44,14 @@ in {
".local/share/keyrings" ".local/share/keyrings"
".local/share/direnv" ".local/share/direnv"
".local/share/chat.fluffy.fluffychat" ".local/share/chat.fluffy.fluffychat"
".local/share/fractal"
".klei" ".klei"
"Android" "Android"
{ ".var/app"
directory = ".var/app"; #{
method = "symlink"; # directory = ".var/app";
} # method = "symlink";
#}
{ {
directory = ".local/share/Steam"; directory = ".local/share/Steam";
method = "symlink"; method = "symlink";

View file

@ -78,6 +78,7 @@ in {
font-awesome font-awesome
nerd-fonts.symbols-only nerd-fonts.symbols-only
hack-font hack-font
noto-fonts-emoji
# microsoft fonts: # microsoft fonts:
#corefonts #corefonts
#vistafonts #vistafonts
@ -91,6 +92,7 @@ in {
}; };
security.polkit.enable = true; security.polkit.enable = true;
services.flatpak = enabled;
#programs.thunar = { #programs.thunar = {
# enable = true; # enable = true;

View file

@ -0,0 +1,3 @@
{channels, ...}: final: prev: {
inherit (channels.unstable) fluffychat;
}