myNixosFlake/home-manager/your-packages.nix
2025-01-08 20:49:43 +03:00

29 lines
422 B
Nix

{ lib, pkgs, ... }:
{
home.packages = with pkgs; [
logseq
joplin-desktop
alacritty
vlc
# Social stuff
telegram-desktop
firefox
qbittorrent
libreoffice
# Minecraft stuff
prismlauncher
#Development stuff
krita
];
nixpkgs.config.permittedInsecurePackages = [
"electron-27.3.11"
];
}