Files
sydnix/modules/home/glab.nix
2025-01-19 18:41:38 -07:00

18 lines
283 B
Nix
Executable File

{ 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 ];
};
}