14 lines
183 B
Nix
14 lines
183 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.sessionVariables = {
|
|
MOZ_ENABLE_WAYLAND = "1";
|
|
MOZ_USE_XINPUT2 = "1";
|
|
};
|
|
|
|
imports = [
|
|
./hyprland.nix
|
|
./wltools.nix
|
|
./waybar.nix
|
|
];
|
|
}
|