nixos-config/modules/home-manager/qt/retro/default.nix
2024-07-15 12:09:17 +09:00

13 lines
183 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
gruvbox-plus-icons
afterglow-cursors-recolored
];
programs.rofi = {
enable = true;
theme = "gruvbox-dark";
};
}