[nix] Reorganizes files and makes an apps folder.

This commit is contained in:
2025-02-12 19:38:42 -08:00
parent 3ba070810b
commit eee5479bf9
6 changed files with 46 additions and 40 deletions

View File

@@ -0,0 +1,14 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
element-desktop
];
xdg.desktopEntries = {
element-desktop = {
name = "Element";
# Custom options to reduce flickering under wayland.
exec = "element-desktop --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu";
};
};
}