nix/modules/home/programs/common.nix

32 lines
420 B
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{ pkgs, ...}:
{
2024-05-28 14:19:16 +02:00
imports = [
./alacritty.nix
./helix.nix
./librewolf.nix
./shell.nix
];
2024-03-09 17:18:36 +01:00
home.packages = with pkgs; [
libreoffice
onlyoffice-bin
2024-03-12 17:31:56 +01:00
vlc
signal-desktop
2024-05-10 19:35:32 +02:00
unstable.webcord
2024-03-12 17:31:56 +01:00
unstable.localsend
2024-03-14 14:06:39 +01:00
bitwarden
2024-03-14 22:46:49 +01:00
pavucontrol
2024-05-10 19:35:32 +02:00
unstable.cubiomes-viewer
2024-05-21 10:58:33 +02:00
unstable.yt-dlp
2024-05-31 12:47:34 +02:00
unstable.rnote
2024-03-20 07:44:38 +01:00
2024-04-04 12:37:57 +02:00
# Image editing
gimp
inkscape
2024-03-20 07:44:38 +01:00
# CLI tools
cloc
2024-03-09 17:18:36 +01:00
];
}