nixos/roles/design.nix
Ivan Bushchik 4afe642684
Refactor every role to have .enable option
NOTE: any config other than stella will not be working for a while

Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2023-08-22 19:39:11 +03:00

15 lines
300 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.my.roles.design;
in {
options.my.roles.design.enable = lib.mkEnableOption "Enable design-specific programs";
config = lib.mkIf (cfg.enable) {
environment.systemPackages = with pkgs; [
inkscape
gimp
imagemagick
];
};
}