misc: initial commit
This commit is contained in:
commit
964b99b28d
32 changed files with 1675 additions and 0 deletions
18
home/desktop/shared/wayland.nix
Normal file
18
home/desktop/shared/wayland.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue