{ config, pkgs, ... }: let username = "ahnwuoa"; homeDirectory = "/home/${username}"; in { home.username = username; home.homeDirectory = homeDirectory; home.packages = with pkgs; [ firefox alacritty mpv nsxiv rofi sct maim xclip libsForQt5.kcalc libsForQt5.kolourpaint libsForQt5.filelight papirus-icon-theme pavucontrol qpwgraph gdb lsd bat zoxide fd ripgrep fzf trash-cli tlrc micro speedtest-cli bluetuith unixtools.xxd starship python3 gnumake ]; qt = { enable = true; platformTheme.name = "qtct"; style.name = "breeze"; style.package = pkgs.libsForQt5.breeze-qt5; }; gtk = { enable = true; gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc"; }; home.pointerCursor = { name = "breeze_cursors"; package = pkgs.libsForQt5.breeze-qt5; size = 24; gtk.enable = true; }; home.file.".icons/default/index.theme".enable = false; home.file.".icons/breeze_cursors".enable = false; xdg.mimeApps.enable = true; xdg.mimeApps.defaultApplications = let image = "nsxiv.desktop"; browser = "firefox.desktop"; text = "nvim.desktop"; media = "mpv.desktop"; in { "image/jpeg" = image; "image/png" = image; "image/gif" = media; "audio/mpeg" = media; "video/mp4" = media; "video/mpeg" = media; "text/plain" = text; "application/xml" = text; }; home.stateVersion = "24.05"; }