This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/modules/features/home/packages.nix
2026-04-12 19:19:07 +07:00

48 lines
784 B
Nix

{
pkgs,
lib,
osconfig,
inputs,
...
}:
let
custom-catppuccin-gtk = pkgs.catppuccin-gtk.override {
variant = "mocha";
accents = [ "sapphire" ];
size = "compact";
};
custom-catppuccin-kde = (pkgs.catppuccin-kde.override {
flavour = [ "mocha" ];
accents = [ "sapphire" ];
});
in
{
home.packages = with pkgs; [
custom-catppuccin-gtk
hyprshot
antigravity
prismlauncher
protonup-qt
protonplus
vlc
gimp
libreoffice-qt-fresh
lutris
osu-lazer-bin
lmstudio
blender
xprop
bluetuith
lxqt.pavucontrol-qt
nwg-look
proton-pass
proton-authenticator
inputs.hytale-launcher.packages.${pkgs.system}.default
(lib.mkIf osconfig.device.programs.cider-2.enable cider-2)
];
}