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

26 lines
619 B
Nix
Raw Normal View History

2024-01-07 15:39:55 +01:00
{pkgs, ...}: {
2023-12-27 10:31:23 +01:00
imports = [
./theming.nix
2023-12-27 10:31:23 +01:00
./firefox.nix
./alacritty.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
2023-12-27 10:31:23 +01:00
];
2024-01-07 15:39:55 +01:00
2024-01-07 15:39:41 +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
2024-02-02 19:59:41 +01:00
anki
rofi-audio-switcher # Script to switch default audio sinks/sources
mpv # Video player
2024-01-07 15:39:41 +01:00
];
2023-12-26 23:25:22 +01:00
}