dotfiles/home/common/gui.nix
2023-04-11 00:58:02 +07:00

260 lines
7.1 KiB
Nix

{ config, pkgs, lib, ... }:
{
imports = [ ./terminal.nix ];
i18n.inputMethod = let fcitx5-qt = pkgs.libsForQt5.fcitx5-qt; in {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [ fcitx5-lua fcitx5-gtk fcitx5-mozc fcitx5-configtool fcitx5-qt ];
};
home.sessionVariables = {
GTK_IM_MODULE = "fcitx";
QT_IM_MODULE = "fcitx";
XMODIFIERS = "@im=fcitx";
SDL_IM_MODULE = "fcitx";
XIM_SERVERS = "fcitx";
INPUT_METHOD = "fcitx";
SUDO_ASKPASS = pkgs.writeScript "sudo-askpass" ''
#! ${pkgs.bash}/bin/bash
${pkgs.libsecret}/bin/secret-tool lookup root password
'';
SDL_AUDIODRIVER = "pipewire,pulse,dsound";
# SDL 3
SDL_AUDIO_DRIVER = "pipewire,pulseaudio,dsound";
ALSOFT_CONF = "${config.xdg.configHome}/.config/alsoft.conf";
# TODO: set to sdl3 compat when SDL3 releases?
# this is for steam games, I set the launch options to:
# `SDL_DYNAMIC_API=$SDL2_DYNAMIC_API %command%`
# Steam itself doesn't work with SDL2_DYNAMIC_API set, so it's
# a bad idea to set SDL2_DYNAMIC_API globally
SDL2_DYNAMIC_API = "${pkgs.SDL2}/lib/libSDL2.so";
};
programs.nnn.extraPackages = with pkgs; [
# drag & drop
xdragon
# xembed
tabbed
# for preview
ffmpeg ffmpegthumbnailer nsxiv imagemagick
zathura /*TODO libreoffice*/ fontpreview djvulibre poppler_utils
] ++ lib.optionals (!config.programs.mpv.enable) [ mpv ];
xdg.configFile."alsoft.conf".text = ''
[general]
hrtf = true
stereo-encoding = hrtf
drivers = pipewire,pulseaudio,jack,alsa,oss,
periods = 2
hrtf-paths = ${pkgs.openal}/share/openal/hrtf
[decoder]
hq-mode = true
[pipewire]
rt-mix = true
[pulse]
allow-moves = true
'';
xdg.userDirs.enable = true;
programs.mpv = {
enable = true;
defaultProfiles = [ "gpu-hq" ];
bindings = rec {
MBTN_LEFT_DBL = "cycle fullscreen";
MBTN_RIGHT = "cycle pause";
MBTN_BACK = "playlist-prev";
MBTN_FORWARD = "playlist-next";
WHEEL_DOWN = "seek -5";
WHEEL_UP = "seek 5";
WHEEL_LEFT = "seek -60";
WHEEL_RIGHT = "seek 60";
h = "no-osd seek -5 exact";
LEFT = h;
l = "no-osd seek 5 exact";
RIGHT = l;
j = "seek -30";
DOWN = j;
k = "seek 30";
UP = k;
H = "no-osd seek -1 exact";
"Shift+LEFT" = "no-osd seek -1 exact";
L = "no-osd seek 1 exact";
"Shift+RIGHT" = "no-osd seek 1 exact";
J = "seek -300";
"Shift+DOWN" = "seek -300";
K = "seek 300";
"Shift+UP" = "seek 300";
"Ctrl+LEFT" = "no-osd sub-seek -1";
"Ctrl+h" = "no-osd sub-seek -1";
"Ctrl+RIGHT" = "no-osd sub-seek 1";
"Ctrl+l" = "no-osd sub-seek 1";
"Ctrl+DOWN" = "add chapter -1";
"Ctrl+j" = "add chapter -1";
"Ctrl+UP" = "add chapter 1";
"Ctrl+k" = "add chapter 1";
"Alt+LEFT" = "frame-back-step";
"Alt+h" = "frame-back-step";
"Alt+RIGHT" = "frame-step";
"Alt+l" = "frame-step";
PGUP = "add chapter 1";
PGDWN = "add chapter -1";
u = "revert-seek";
"Ctrl++" = "add sub-scale 0.1";
"Ctrl+-" = "add sub-scale -0.1";
"Ctrl+0" = "set sub-scale 0";
q = "quit";
Q = "quit-watch-later";
"q {encode}" = "quit 4";
p = "cycle pause";
SPACE = p;
f = "cycle fullscreen";
n = "playlist-next";
N = "playlist-prev";
o = "show-progress";
O = "script-binding stats/display-stats-toggle";
"`" = "script-binding console/enable";
":" = "script-binding console/enable";
z = "add sub-delay -0.1";
x = "add sub-delay 0.1";
Z = "add audio-delay -0.1";
X = "add audio-delay 0.1";
"1" = "add volume -1";
"2" = "add volume 1";
s = "cycle sub";
v = "cycle video";
a = "cycle audio";
S = ''cycle-values sub-ass-override "force" "no"'';
PRINT = "screenshot";
c = "add panscan 0.1";
C = "add panscan -0.1";
PLAY = "cycle pause";
PAUSE = "cycle pause";
PLAYPAUSE = "cycle pause";
PLAYONLY = "set pause no";
PAUSEONLY = "set pause yes";
STOP = "stop";
CLOSE_WIN = "quit";
"CLOSE_WIN {encode}" = "quit 4";
"Ctrl+w" = ''set hwdec "no"'';
# T = "script-binding generate-thumbnails";
};
config = {
osc = "no";
hwdec = "vaapi";
vo = "gpu-next,gpu,dmabuf-wayland,wlshm,vdpau,xv,x11,sdl,drm,";
alang = "jpn,en,ru";
slang = "jpn,en,ru";
vlang = "jpn,en,ru";
watch-later-directory = "${config.xdg.stateHome}/mpv/watch_later";
resume-playback-check-mtime = true;
# vaapi-device / vulkan-device
# screen / vulkan-display-display
audio-device = "pipewire";
# because ao=pipewire doesn't work for whatever reason...
ao = "pulse,alsa,jack,pipewire,";
audio-file-auto = "fuzzy";
sub-auto = "fuzzy";
gpu-context = "waylandvk";
wayland-edge-pixels-pointer = 0;
wayland-edge-pixels-touch = 0;
screenshot-format = "webp";
screenshot-webp-lossless = true;
screenshot-directory = "${config.home.homeDirectory}/Pictures/Screenshots/mpv";
screenshot-sw = true;
cache-dir = "${config.xdg.cacheHome}/mpv";
input-default-bindings = false;
};
# profiles = { };
package = pkgs.wrapMpv (pkgs.mpv-unwrapped.override {
# webp support
ffmpeg_5 = pkgs.ffmpeg_5-full;
}) {
scripts = with pkgs.mpvScripts; [
thumbnail
mpris
(subserv.override { port = 1337; secondary = false; })
(subserv.override { port = 1338; secondary = true; })
];
};
};
services.gammastep.enable = true;
fonts.fontconfig.enable = true;
gtk = {
enable = true;
font.name = "Noto Sans";
font.size = 10;
iconTheme = {
package = pkgs.papirus-icon-theme;
name = "Papirus-Dark";
};
theme = {
package = pkgs.breeze-gtk;
name = "Breeze-Dark";
};
};
programs.fzf = {
enable = true;
};
systemd.user.services = {
fcitx5-daemon = {
Unit.After = "graphical-session-pre.target";
Service = {
Restart = "on-failure";
RestartSec = 3;
};
};
};
# i run this manually instead
#services.nextcloud-client = {
# enable = true;
# startInBackground = true;
#};
# and this too
#programs.nheko = {
# enable = true;
# settings = {
# };
#};
# some packages require a pointer theme
home.pointerCursor.gtk.enable = true;
home.pointerCursor.package = pkgs.vanilla-dmz;
home.pointerCursor.name = "Vanilla-DMZ";
programs.yt-dlp.enable = true;
home.packages = with pkgs; [
# wayland
grim slurp
# gui compat stuff
qt5ct qgnomeplatform
# various programs i use
keepassxc nheko qbittorrent mumble
nextcloud-client gnome.zenity kdeconnect
# cli tools
imagemagick ffmpeg_5-full
# fonts
noto-fonts noto-fonts-cjk-sans noto-fonts-cjk-serif
noto-fonts-emoji noto-fonts-extra
(nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; })
# might check out some day (tm)
# nyxt qutebrowser
# for updating parts of this repo
nvfetcher config.nur.repos.rycee.mozilla-addons-to-nix
anki-bin
];
}