nix-config/homeManagerModules/packages/misc.nix

46 lines
854 B
Nix
Raw Normal View History

2024-11-11 19:05:33 +01:00
{
lib,
config,
pkgs,
...
}:
let
cfg = config.krop.hm.packages.misc;
in
{
options.krop.hm.packages.misc = {
enable = lib.mkOption {
type = lib.types.bool;
default = true;
example = false;
description = "Enable my misc applications";
};
2024-11-13 11:27:41 +01:00
syncthing = lib.mkOption {
type = lib.types.bool;
default = true;
example = false;
description = "Enable syncthing";
};
2024-11-11 19:05:33 +01:00
};
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
spotify
moonlight-qt
jetbrains-mono
mattermost-desktop
gparted
2025-01-27 08:41:58 +01:00
lutris
2024-11-11 19:05:33 +01:00
prismlauncher # REMOVE AND MOVE TO games module after refactoring
joplin-desktop
wireshark
2024-11-13 17:12:33 +01:00
discord
2024-11-28 16:14:29 +01:00
element-desktop
2024-11-29 20:47:34 +01:00
vlc
2024-12-21 16:52:04 +01:00
losslesscut-bin
2024-11-11 19:05:33 +01:00
];
2024-11-13 11:27:41 +01:00
services.syncthing = {
enable = true;
};
2024-11-11 19:05:33 +01:00
};
}