nix-config/home/features/desktop/common/default.nix

28 lines
673 B
Nix
Raw Normal View History

2024-01-07 15:39:55 +01:00
{pkgs, ...}: {
2023-12-27 10:31:23 +01:00
imports = [
./firefox.nix
2024-01-07 15:37:41 +01:00
./wezterm.nix
2023-12-28 18:23:56 +01:00
./font.nix
2023-12-27 22:47:58 +01:00
./playerctl.nix
2024-01-07 15:39:55 +01:00
./easyeffects.nix
2024-01-20 23:03:03 +01:00
./nextcloud.nix
2024-01-26 18:04:50 +01:00
./flatpak.nix
2024-02-02 19:59:41 +01:00
./notes.nix
2024-03-07 20:41:02 +01:00
./fcitx5.nix
2023-12-27 10:31:23 +01:00
];
2024-01-07 15:39:55 +01:00
home.packages = with pkgs;
[
jellyfin-media-player # watch shows & movies from jellyfin with hardware decoding
# feishin-appimage # self-packaged feishin while electron build fails
signal-desktop # secure messenger
webcord-vencord # more "privacy friendly" discord client
anki
calibre
rofi-audio-switcher # Script to switch default audio sinks/sources
mpv # Video player
]
++ (with pkgs.unstable; [feishin]);
2023-12-26 23:25:22 +01:00
}