40 lines
815 B
Nix
40 lines
815 B
Nix
{ config, pkgs, inputs, lib, username, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./alacritty.nix
|
|
./helix.nix
|
|
./hypridle.nix
|
|
./hyprland.nix
|
|
./hyprlock.nix
|
|
./swww.nix
|
|
./mime-apps.nix
|
|
./packages.nix
|
|
./rofi.nix
|
|
./shell.nix
|
|
./swaync.nix
|
|
./theming.nix
|
|
./waybar.nix
|
|
./waypaper.nix
|
|
./wlogout.nix
|
|
./swayosd.nix
|
|
./yazi.nix
|
|
./zathura.nix
|
|
];
|
|
|
|
home.username = username;
|
|
home.homeDirectory = "/home/${username}";
|
|
home.stateVersion = "25.11";
|
|
|
|
home.sessionVariables = {
|
|
XDG_MENU_PREFIX = "plasma-";
|
|
XDG_CURRENT_DESKTOP = "Hyprland";
|
|
XDG_SESSION_DESKTOP = "Hyprland";
|
|
QT_QPA_PLATFORM = "wayland;xcb";
|
|
LIBVA_DRIVER_NAME = "nvidia";
|
|
GBM_BACKEND = "nvidia-drm";
|
|
__GLX_VENDOR_LIBRARY_NAME = "nvidia";
|
|
WLR_NO_HARDWARE_CURSORS = "1";
|
|
};
|
|
}
|