init
This commit is contained in:
39
home/home.nix
Normal file
39
home/home.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user