nixos/roles/latex.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

12 lines
272 B
Nix

{ config, pkgs, lib, ... }:
let
cfg = config.my.roles.latex;
in {
options.my.roles.latex.enable = lib.mkEnableOption "Enable latex stuff";
config = lib.mkIf (cfg.enable){
environment.systemPackages = with pkgs; [
texlive.combined.scheme-full
];
};
}