This commit is contained in:
2026-01-02 20:43:09 +01:00
commit 96a1f8a395
124 changed files with 2833 additions and 0 deletions

39
home/home.nix Normal file
View File

@@ -0,0 +1,39 @@
{ 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";
};
}