caem
75b13ac379
With the release of the Nvidia 555 beta drivers and their improvements to the Wayland experience I've finally decided to return to NixOS with Hyprland again after 2 years of running Gentoo and Opensuse Tumbleweed on X11. So this is me committing the work done so far from the last couple of days. Future commits will be more incremental.
36 lines
934 B
Nix
36 lines
934 B
Nix
{ pkgs, ...}:
|
|
|
|
{
|
|
imports = [
|
|
../sets/fonts.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
hyprpaper
|
|
dunst
|
|
rofi-wayland
|
|
foot
|
|
wl-clipboard
|
|
pcmanfm # TODO: Replace with dolphin and figure out why stylix doesn't theme it.
|
|
];
|
|
|
|
# TODO: Use KDE portal features for file pickers and popups
|
|
# TODO: Add missing utilities for taking screenshots, recording, etc...
|
|
|
|
environment.variables = {
|
|
LIBVA_DRIVER_NAME = "nvidia";
|
|
XDG_SESSION_TYPE = "wayland";
|
|
GBM_BACKEND = "nvidia-drm";
|
|
__GLX_VENDOR_LIBRARY_NAME = "nvidia";
|
|
NIXOS_OZONE_WL = 1; # TODO: This doesn't work. Fix it
|
|
};
|
|
|
|
programs.hyprland.enable = true;
|
|
services.gnome.gnome-keyring.enable = true;
|
|
security.pam.services.sddm.enableGnomeKeyring = true;
|
|
|
|
# TODO: switch out the display manager for a tui based one
|
|
services.displayManager.sddm.enable = true;
|
|
services.displayManager.sddm.wayland.enable = true;
|
|
}
|
|
|