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
];
}