mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-21 00:49:52 +01:00
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{pkgs, hyprland, catppuccin-hyprland, ...}: {
|
|
imports = [
|
|
# hyprland.homeManagerModules.default
|
|
|
|
./anyrun.nix
|
|
./wayland-apps.nix
|
|
];
|
|
|
|
# wayland.windowManager.hyprland.enable = true;
|
|
|
|
# hyprland configs, based on https://github.com/notwidow/hyprland
|
|
home.file.".config/hypr" = {
|
|
source = ./hypr-conf;
|
|
# copy the scripts directory recursively
|
|
recursive = true;
|
|
};
|
|
home.file.".config/hypr/themes".source = "${catppuccin-hyprland}/themes";
|
|
|
|
# music player - mpd
|
|
home.file.".config/mpd" = {
|
|
source = ./mpd;
|
|
recursive = true;
|
|
};
|
|
|
|
# allow fontconfig to discover fonts and configurations installed through home.packages
|
|
fonts.fontconfig.enable = true;
|
|
|
|
systemd.user.sessionVariables = {
|
|
"NIXOS_OZONE_WL" = "1"; # for any ozone-based browser & electron apps to run on wayland
|
|
"MOZ_ENABLE_WAYLAND" = "1"; # for firefox to run on wayland
|
|
"MOZ_WEBRENDER" = "1";
|
|
|
|
# for hyprland with nvidia gpu, ref https://wiki.hyprland.org/Nvidia/
|
|
"LIBVA_DRIVER_NAME" = "nvidia";
|
|
"XDG_SESSION_TYPE" = "wayland";
|
|
"GBM_BACKEND" = "nvidia-drm";
|
|
"__GLX_VENDOR_LIBRARY_NAME" = "nvidia";
|
|
"WLR_NO_HARDWARE_CURSORS" = "1";
|
|
"WLR_EGL_NO_MODIFIRES" = "1";
|
|
};
|
|
|
|
}
|