mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
ac0a706f1c
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
24 lines
606 B
Nix
24 lines
606 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
vlc # Video player
|
|
obsidian # Note taking app
|
|
textpieces # Manipulate texts
|
|
resources # Resource monitor
|
|
gnome-clocks # Clocks app
|
|
gnome-text-editor # Basic graphic text editor
|
|
pinta # Image editor
|
|
switcheroo # Convert images between different formats
|
|
onlyoffice-desktopeditors # Office suite
|
|
blanket # Listen to different sounds
|
|
thunar # File explorer
|
|
|
|
signal-desktop # Messaging app
|
|
ticktick # Todo app
|
|
];
|
|
|
|
home.persistence."/persist".directories = [
|
|
".config/ticktick"
|
|
".config/Signal"
|
|
];
|
|
}
|