home-manager/modules/packages.nix

48 lines
793 B
Nix
Raw Normal View History

2023-08-26 16:49:08 +00:00
{
pkgs,
lib,
...
}: {
config.nixpkgs.config = {
allowUnfree = false;
allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"vscode"
"vscode-extension-MS-python-vscode-pylance"
"vscode-extension-github-copilot"
"osu-lazer"
];
};
2023-08-26 16:35:30 +00:00
config.home.packages = with pkgs; [
# Basic utils
unzip
magic-wormhole
# Important graphical applications
keepassxc
logseq
xournalpp
onlyoffice-bin
# Communication
webcord
telegram-desktop
signal-desktop
element-desktop
# Creative software
gimp
davinci-resolve
# Games
osu-lazer
# Misc
comma # Run any binary from the repos with a comma `, cowsay neato`
gnome-decoder
tor-browser-bundle-bin
];
}