nixos/modules/packages/desktop-fat/default.nix

48 lines
1.5 KiB
Nix
Raw Normal View History

2023-12-05 16:40:40 +08:00
inputs:
{
imports = inputs.localLib.mkModules
[
./chromium.nix
];
config =
let
inherit (inputs.lib) mkIf;
in mkIf (builtins.elem "desktop-fat" inputs.config.nixos.packages._packageSets)
{
nixos =
{
packages = with inputs.pkgs;
{
_packages =
[
# system management
2023-12-10 00:07:36 +08:00
etcher btrfs-assistant snapper-gui libsForQt5.qtstyleplugin-kvantum
2023-12-05 16:40:40 +08:00
# password and key management
2023-12-10 00:07:36 +08:00
yubikey-manager yubikey-manager-qt yubikey-personalization yubikey-personalization-gui bitwarden
2023-12-05 16:40:40 +08:00
# download
qbittorrent nur-xddxdd.baidupcs-go wgetpaste
# development
scrcpy weston cage openbox krita
# media
spotify yesplaymusic simplescreenrecorder imagemagick gimp netease-cloud-music-gtk vlc
# editor
2023-12-10 00:07:36 +08:00
localPackages.typora
2023-12-05 16:40:40 +08:00
# themes
orchis-theme plasma-overdose-kde-theme materia-kde-theme graphite-kde-theme arc-kde-theme materia-theme
# news
2023-12-10 00:07:36 +08:00
fluent-reader
2023-12-05 16:40:40 +08:00
# nix tools
deploy-rs.deploy-rs nixpkgs-fmt
# instant messager
2023-12-16 13:42:19 +08:00
element-desktop telegram-desktop discord fluffychat
2023-12-05 16:40:40 +08:00
# browser
2023-12-10 00:07:36 +08:00
google-chrome
# office
crow-translate zotero pandoc ydict
2023-12-05 16:40:40 +08:00
] ++ (with inputs.lib; filter isDerivation (attrValues plasma5Packages.kdeGear));
};
};
programs = { steam.enable = true; kdeconnect.enable = true; };
};
}