Files
sydnix/modules/home/glab.nix
2025-01-03 23:52:31 -07:00

18 lines
283 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.programs.glab;
in {
options = {
programs.glab = {
enable = mkEnableOption "the GitLab CLI tool";
};
};
config = mkIf cfg.enable {
# TODO: Everything else. }:)
home.packages = [ pkgs.glab ];
};
}