nix-config/home/features/desktop/common/default.nix
2024-12-20 17:54:57 +01:00

24 lines
436 B
Nix

{pkgs, ...}: {
imports = [
./firefox.nix
./wezterm.nix
./font.nix
./playerctl.nix
./easyeffects.nix
./nextcloud.nix
./flatpak.nix
./notes.nix
./fcitx5.nix
];
home.packages = with pkgs;
[
signal-desktop # secure messenger
webcord-vencord # more "privacy friendly" discord client
anki
calibre
mpv # Video player
]
++ (with pkgs.unstable; [feishin]);
}