nixos-config/modules/home-manager/profiles/desktop.nix

62 lines
2.0 KiB
Nix
Raw Normal View History

2021-11-30 01:03:05 +00:00
# Enables all of my usual setup for desktop-oriented stuff.
{ config, options, lib, pkgs, ... }:
let cfg = config.profiles.desktop;
in {
options.profiles.desktop = {
enable = lib.mkEnableOption "installations of desktop apps";
graphics.enable =
lib.mkEnableOption "installations of graphics-related apps";
audio.enable = lib.mkEnableOption "installations of audio-related apps";
2021-12-26 08:02:57 +00:00
multimedia.enable =
lib.mkEnableOption "installations for opening multimedia files";
2021-11-30 01:03:05 +00:00
};
config = lib.mkIf cfg.enable (lib.mkMerge [
(lib.mkIf cfg.graphics.enable {
home.packages = with pkgs; [
aseprite # Pixel art wannabe tool.
blender # 3D modelling wannabe tool.
inkscape # Illustration wannabe tool.
gimp # Photo editing wannabe tool.
krita # Digital art wannabe tool.
2021-12-06 07:27:51 +00:00
imagemagick # Ah yes, everyman's image manipulation tool.
gmic # Don't let the gimmicks fool you, it's a magical image framework.
2021-11-30 01:03:05 +00:00
];
})
(lib.mkIf cfg.audio.enable {
home.packages = with pkgs; [
musescore # The free composition tool.
zrythm # The freer FL Studio (if you're sailing by the high seven seas).
2021-11-30 01:03:05 +00:00
# TODO: Uncomment once yabridge normally builds.
# !!! Be sure to install Wine for this one.
#yabridge # Building bridges to Windows and Linux audio tools.
#yabridgectl # The bridge controller.
helvum # The Pipewire Patchbay.
carla # The Carla Carla.
2021-11-30 01:03:05 +00:00
];
2022-02-02 04:25:03 +00:00
# This is assuming you're using Pipewire, yes?
2021-11-30 01:03:05 +00:00
services.easyeffects.enable = true;
2021-12-08 04:18:37 +00:00
services.fluidsynth = {
enable = true;
soundService = "pipewire-pulse";
2021-12-08 04:18:37 +00:00
};
2021-11-30 01:03:05 +00:00
})
2021-12-13 07:20:34 +00:00
(lib.mkIf cfg.multimedia.enable {
home.packages = with pkgs; [
mpv # The modern VLC.
brave # The only web browser that gives me money.
foliate # The prettier PDF viewer.
sioyek # The researcher's PDF viewer.
thunderbird # Email checks.
];
})
2021-11-30 01:03:05 +00:00
]);
}