feat: Added affine

This commit is contained in:
2026-02-18 17:30:33 +05:30
parent 0591868be3
commit c22ff38874
3 changed files with 24 additions and 14 deletions

9
home/apps/affine.nix Normal file
View File

@@ -0,0 +1,9 @@
{
pkgs,
lib,
...
}: {
home.packages = lib.optionals pkgs.stdenv.isLinux [
pkgs.affine
];
}

View File

@@ -22,6 +22,7 @@ lib.optionalAttrs device.hasGui {
# ./vial.nix
# ./vscode.nix
./affine.nix
./blueman.nix
./chromium.nix
./discord.nix

View File

@@ -8,20 +8,20 @@
loop-playlist = "inf";
};
profiles = {
hdr = {
vo = "gpu-next";
gpu-api = "vulkan";
hdr-compute-peak = "yes";
hdr-peak-detect = "yes";
target-peak = 400;
target-prim = "bt.2020";
target-trc = "pq";
inverse-tone-mapping = "yes";
tone-mapping = "spline";
tone-mapping-mode = "auto";
target-colorspace-hint = "auto";
gamut-mapping = "desaturate";
};
# hdr = {
# vo = "gpu-next";
# gpu-api = "vulkan";
# hdr-compute-peak = "yes";
# hdr-peak-detect = "yes";
# target-peak = 400;
# target-prim = "bt.2020";
# target-trc = "pq";
# inverse-tone-mapping = "yes";
# tone-mapping = "spline";
# tone-mapping-mode = "auto";
# target-colorspace-hint = "auto";
# gamut-mapping = "desaturate";
# };
};
};
}