home-manager/systems/common/packages.nix
Kristian Krsnik f7b84c1de6
removed onlyoffice
This is because it cannot find nix installed fonts but libreoffice can and replaces it now
2023-10-08 13:58:22 +02:00

49 lines
718 B
Nix

{
pkgs,
lib,
...
}: {
nixpkgs.config = {
allowUnfree = false;
allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"vscode"
"vscode-extension-MS-python-vscode-pylance"
"vscode-extension-github-copilot"
"osu-lazer"
];
};
home.packages = with pkgs; [
# Basic utils
unzip
magic-wormhole
# Important graphical applications
keepassxc
logseq
xournalpp
libreoffice
# Games
osu-lazer
# Communication
webcord
telegram-desktop
signal-desktop
element-desktop
# Creative software
gimp
davinci-resolve
# Misc
gnome-decoder
tor-browser-bundle-bin
hypnotix
];
}