update, added assets

This commit is contained in:
2026-03-29 02:39:10 +09:00
parent ad4a10ec09
commit b16a603ea1
21 changed files with 308 additions and 44 deletions

17
home/picom.nix Normal file
View File

@@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
services.picom = {
enable = true;
backend = "glx";
fade = true;
fadeExclude = [
"window_type *= 'menu'"
"focused = 1"
];
inactiveOpacity = 0.9;
shadow = true;
shadowExclude = [
"focused = 1"
];
};
}