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

17 lines
420 B
Nix
Raw Normal View History

2023-12-26 23:25:22 +01:00
{
2023-12-27 10:31:23 +01:00
imports = [
./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
2023-12-27 10:31:23 +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
obsidian
];
2023-12-26 23:25:22 +01:00
}