misc: initial commit

This commit is contained in:
Emily 2024-12-28 19:33:49 -05:00
commit 964b99b28d
32 changed files with 1675 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{
config,
lib,
pkgs,
...
}: let
variables = {
NIXOS_OZONE_WL = "1";
STEAM_FORCE_DESKTOPUI_SCALING = "1.5";
};
in {
options.my.desktop.wayland = lib.mkEnableOption "my Wayland options";
config = lib.mkIf config.my.desktop.wayland {
home.sessionVariables = variables;
systemd.user.sessionVariables = variables;
};
}