nixos-config/modules/home-manager/desktop.nix
Gabriel Arazas efc578e961 Update modules
- Add `modules.desktop.cleanup` for the usual cleanup activties in
  NixOS.
- Update to proper descriptions for module options added with
  `lib.mkEnableOption`.
- Additional packages for various modules.
- Deleted `modules/home-manager/alacritty`. It is pretty useless though.
  :(
2021-12-11 13:16:45 +08:00

46 lines
1.2 KiB
Nix

# Enables all of my usual setup for desktop-oriented stuff.
{ config, options, lib, pkgs, ... }:
let cfg = config.modules.desktop;
in {
options.modules.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";
};
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.
imagemagick # Ah yes, everyman's image manipulation tool.
gmic # Don't let the gimmicks fool you, it's a magical image framework.
];
})
(lib.mkIf cfg.audio.enable {
home.packages = with pkgs; [
ardour
musescore
# Trying to
yabridge
yabridgectl
helvum
];
services.easyeffects.enable = true;
services.fluidsynth = {
enable = true;
soundService = "pipewire-pulse";
};
})
]);
}