mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 18:55:47 +02:00
9baaaa2bfe
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
22 lines
443 B
Nix
22 lines
443 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
vlc # Video player
|
|
obsidian # Note taking app
|
|
pinta # Image editor
|
|
onlyoffice-desktopeditors # Office suite
|
|
blanket # Listen to different sounds
|
|
signal-desktop # Messaging app
|
|
ticktick # Todo app
|
|
|
|
# Backup
|
|
thunar
|
|
gnome-text-editor
|
|
];
|
|
|
|
home.persistence."/persist".directories = [
|
|
".config/ticktick"
|
|
".config/Signal"
|
|
".config/obsidian"
|
|
];
|
|
}
|