| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- { config, pkgs, ... }:
- {
- imports = [
-
- ];
- environment.systemPackages = with pkgs; [
- cliphist
- wl-clipboard
- hyprpicker
- wtype
- mission-center
- nomacs
- alacritty
- vlc
- kdePackages.kdenlive
- kdePackages.ark
- kdePackages.dolphin
- kdePackages.qtsvg
- kdePackages.kio
- kdePackages.kio-fuse
- kdePackages.kio-extras
- kdePackages.ksshaskpass
- pam_u2f
- ];
- programs.hyprland = {
- enable = true;
- withUWSM = true;
- xwayland.enable = true;
- };
- programs.kdeconnect.enable = true;
- environment.variables = {
- GDK_BACKEND = "wayland";
- XDG_SESSION_TYPE = "wayland";
- WLR_DRM_NO_ATOMIC = "1";
- NIXOS_OZONE_WL = "1";
- WLR_RENDERER = "vulkan";
- WLR_NO_HARDWARE_CURSORS = "1";
- ELECTRON_OZONE_PLATFORM_HINT = "wayland";
- };
- xdg.portal = {
- enable = true;
- extraPortals = with pkgs; [
- xdg-desktop-portal-gtk
- xdg-desktop-portal-wlr
- ];
- wlr.enable = true;
- config = {
- common = {
- # Use hyprland portal for screen sharing (screencast)
- "org.freedesktop.impl.portal.Screencast" = "hyprland";
- "org.freedesktop.impl.portal.Screenshot" = "hyprland";
- };
- };
- };
- environment.sessionVariables = {
- NIXOS_OZONE_WL = "1";
- QT_QPA_PLATFORM = "wayland";
- XDG_CURRENT_DESKTOP = "hyprland";
- WLR_NO_HARDWARE_CURSORS = "1";
- };
- services.gnome.gnome-keyring.enable = true;
- security.pam.services.login.enableGnomeKeyring = true;
- security.pam.services.hyprland.enableGnomeKeyring = true;
- security.pam.services.login.enableKwallet = true;
- systemd.user.services.gnome-keyring = {
- wantedBy = [ "default.target" ];
- serviceConfig = {
- ExecStart = "${pkgs.gnome-keyring}/bin/gnome-keyring-daemon --start --foreground --components=pkcs11,secrets,ssh";
- Restart = "on-abort";
- };
- };
- }
|