2023-10-27 14:01:54 +02:00
|
|
|
{ config, pkgs, lib, materusArg, ... }:
|
|
|
|
with materusArg.pkgs.lib;
|
2023-10-08 11:42:08 +02:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./fonts.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
#Single Packages
|
2024-03-02 19:51:38 +01:00
|
|
|
options.materus.profile.packages.home-manager = mkPrivateVar materusArg.cfg.configInputs.home-manager.packages.${pkgs.system}.home-manager;
|
2024-03-23 14:02:51 +01:00
|
|
|
options.materus.profile.packages.firefox = mkPrivateVar (pkgs.firefox.override {
|
|
|
|
nativeMessagingHosts = [
|
|
|
|
pkgs.plasma-browser-integration
|
|
|
|
];
|
|
|
|
});
|
2024-03-11 16:15:04 +01:00
|
|
|
|
2023-10-08 11:42:08 +02:00
|
|
|
#Package Lists
|
|
|
|
options.materus.profile.packages.list.nixRelated = mkPrivateVar (with pkgs; [
|
|
|
|
nix-prefetch
|
|
|
|
nix-prefetch-scripts
|
|
|
|
nix-prefetch-github
|
|
|
|
nix-prefetch-docker
|
|
|
|
nixfmt
|
|
|
|
nix-top
|
|
|
|
nix-tree
|
|
|
|
nix-diff
|
|
|
|
nix-ld
|
2024-03-11 16:15:04 +01:00
|
|
|
nil
|
|
|
|
nixpkgs-fmt
|
2023-10-08 11:42:08 +02:00
|
|
|
nixpkgs-review
|
|
|
|
]);
|
|
|
|
|
|
|
|
options.materus.profile.packages.list.desktopApps = mkPrivateVar (with pkgs; [
|
2024-03-11 16:15:04 +01:00
|
|
|
(discord.override { nss = nss_latest; withOpenASAR = true; withTTS = true; })
|
2023-10-08 11:42:08 +02:00
|
|
|
tdesktop
|
|
|
|
mpv
|
|
|
|
ani-cli
|
2024-04-19 18:30:42 +02:00
|
|
|
obsidian
|
|
|
|
nextcloud-client
|
2023-10-08 11:42:08 +02:00
|
|
|
spotify
|
|
|
|
thunderbird
|
|
|
|
keepassxc
|
|
|
|
(aspellWithDicts (ds: with ds; [ en en-computers en-science pl ]))
|
|
|
|
onlyoffice-bin
|
|
|
|
]);
|
|
|
|
|
|
|
|
options.materus.profile.packages.list.terminalApps = mkPrivateVar (with pkgs; [
|
|
|
|
neofetch
|
|
|
|
ripgrep
|
|
|
|
fd
|
|
|
|
]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|