mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-24 02:11:29 +01:00
63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{pkgs, ...}:
|
|
|
|
|
|
{
|
|
# i3wm: old and stable, only support X11
|
|
# sway: compatible with i3wm, support Wayland. do not support Nvidia GPU officially.
|
|
# hyprland: project starts from 2022, support Wayland, envolving fast, good looking, support Nvidia GPU.
|
|
|
|
environment.pathsToLink = [ "/libexec" ]; # links /libexec from derivations to /run/current-system/sw
|
|
services.xserver = {
|
|
enable = true;
|
|
|
|
desktopManager = {
|
|
xterm.enable = false;
|
|
};
|
|
|
|
displayManager = {
|
|
defaultSession = "hyprland";
|
|
lightdm.enable = false;
|
|
gdm = {
|
|
enable = true;
|
|
wayland = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
programs.hyprland = {
|
|
enable = true;
|
|
|
|
xwayland = {
|
|
enable = true;
|
|
hidpi = true;
|
|
};
|
|
|
|
nvidiaPatches = true;
|
|
};
|
|
|
|
|
|
# thunar file manager(part of xfce) related options
|
|
programs.thunar.plugins = with pkgs.xfce; [
|
|
thunar-archive-plugin
|
|
thunar-volman
|
|
];
|
|
services.gvfs.enable = true; # Mount, trash, and other functionalities
|
|
services.tumbler.enable = true; # Thumbnail support for images
|
|
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
wlr.enable = true;
|
|
xdgOpenUsePortal = true;
|
|
extraPortals = with pkgs; [
|
|
xdg-desktop-portal-wlr # for wlroots based compositors
|
|
# xdg-desktop-portal-kde # for kde
|
|
# xdg-desktop-portal-gtk # for gtk
|
|
];
|
|
};
|
|
|
|
# for power management
|
|
services.upower.enable = true;
|
|
|
|
}
|