dev-commit: re-add the enable option
This commit is contained in:
parent
b57b037e69
commit
a9b0c5c2b0
2 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,8 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
options.programs.dev-commit = {
|
options.programs.dev-commit = {
|
||||||
|
enable = lib.mkEnableOption "Enable dev-commit";
|
||||||
|
|
||||||
repoPaths = lib.mkOption {
|
repoPaths = lib.mkOption {
|
||||||
default = [ ];
|
default = [ ];
|
||||||
description = "A list of repository paths that should have automated commits";
|
description = "A list of repository paths that should have automated commits";
|
||||||
|
@ -48,7 +50,7 @@
|
||||||
repoPaths = lib.concatStringsSep ":" cfg.repoPaths;
|
repoPaths = lib.concatStringsSep ":" cfg.repoPaths;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
home = {
|
home = lib.mkIf cfg.enable {
|
||||||
packages = [ pkgs.dev-commit ];
|
packages = [ pkgs.dev-commit ];
|
||||||
|
|
||||||
sessionVariables.DEV_COMMIT_PATHS = repoPaths;
|
sessionVariables.DEV_COMMIT_PATHS = repoPaths;
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
{
|
{
|
||||||
flake.modules.nixos."nixosConfigurations/t480".home-manager.users.${config.flake.meta.owner.username} =
|
flake.modules.nixos."nixosConfigurations/t480".home-manager.users.${config.flake.meta.owner.username} =
|
||||||
hmArgs: {
|
hmArgs: {
|
||||||
|
programs.dev-commit.enable = true;
|
||||||
|
|
||||||
programs.dev-commit.schedule.enable = true;
|
programs.dev-commit.schedule.enable = true;
|
||||||
programs.dev-commit.schedule.time = "daily";
|
programs.dev-commit.schedule.time = "daily";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue