This commit is contained in:
parent
c3fa0ce6ce
commit
c36d1aeaa3
4 changed files with 83 additions and 114 deletions
|
@ -14,26 +14,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
dev-commit = {
|
|
||||||
enable = false;
|
|
||||||
|
|
||||||
repoPaths =
|
|
||||||
let
|
|
||||||
personal = "${config.xdg.userDirs.extraConfig.XDG_REPOS_DIR}/personal";
|
|
||||||
in
|
|
||||||
[
|
|
||||||
"${personal}/email-filters"
|
|
||||||
"${personal}/nix-config"
|
|
||||||
"${personal}/oliverdavies.uk"
|
|
||||||
"${personal}/opentofu-dns"
|
|
||||||
];
|
|
||||||
|
|
||||||
schedule = {
|
|
||||||
enable = true;
|
|
||||||
time = "daily";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
zsh.shellAliases =
|
zsh.shellAliases =
|
||||||
let
|
let
|
||||||
inherit (config.xdg.userDirs) documents;
|
inherit (config.xdg.userDirs) documents;
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./dev-commit.nix
|
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./zsh
|
./zsh
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,93 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
let
|
|
||||||
cfg = config.programs.dev-commit;
|
|
||||||
repoPaths = concatStringsSep ":" cfg.repoPaths;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.programs.dev-commit = {
|
|
||||||
enable = mkEnableOption "Enable dev-commit";
|
|
||||||
|
|
||||||
repoPaths = mkOption {
|
|
||||||
default = [ ];
|
|
||||||
description = "A list of repository paths that should have automated commits";
|
|
||||||
type = types.listOf types.path;
|
|
||||||
};
|
|
||||||
|
|
||||||
schedule = mkOption {
|
|
||||||
type = types.submodule {
|
|
||||||
options = {
|
|
||||||
enable = mkEnableOption "Enable automated dev commits with systemd";
|
|
||||||
|
|
||||||
time = mkOption {
|
|
||||||
description = ''
|
|
||||||
Time expression for when to run the dev-commit job.
|
|
||||||
|
|
||||||
This uses systemd's `OnCalendar` syntax.
|
|
||||||
|
|
||||||
Examples:
|
|
||||||
- "hourly" (once every hour)
|
|
||||||
- "daily" (once per day at midnight)
|
|
||||||
- "Mon *-*-01 12:00:00" (every Monday at 12:00 PM)
|
|
||||||
|
|
||||||
See `man systemd.time` for full syntax reference.
|
|
||||||
'';
|
|
||||||
default = "hourly";
|
|
||||||
type = types.str;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
default = {
|
|
||||||
enable = false;
|
|
||||||
time = "hourly";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
home = {
|
|
||||||
packages = [
|
|
||||||
pkgs.dev-commit
|
|
||||||
];
|
|
||||||
|
|
||||||
sessionVariables.DEV_COMMIT_PATHS = repoPaths;
|
|
||||||
};
|
|
||||||
|
|
||||||
systemd.user = mkIf cfg.schedule.enable {
|
|
||||||
services.dev-commit = {
|
|
||||||
Install.WantedBy = [ "default.target" ];
|
|
||||||
|
|
||||||
Service = {
|
|
||||||
Environment = [
|
|
||||||
"DEV_COMMIT_PATHS=${repoPaths}"
|
|
||||||
];
|
|
||||||
|
|
||||||
ExecStart = "${lib.getExe pkgs.dev-commit}";
|
|
||||||
|
|
||||||
Type = "oneshot";
|
|
||||||
};
|
|
||||||
|
|
||||||
Unit.Description = "dev-commit";
|
|
||||||
};
|
|
||||||
|
|
||||||
timers.dev-commit = {
|
|
||||||
Install.WantedBy = [ "timers.target" ];
|
|
||||||
|
|
||||||
Timer = {
|
|
||||||
OnCalendar = cfg.schedule.time;
|
|
||||||
Unit = "dev-commit.service";
|
|
||||||
};
|
|
||||||
|
|
||||||
Unit.Description = "Runs automated development commits in select project repositories.";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
83
modules2/dev-commit.nix
Normal file
83
modules2/dev-commit.nix
Normal file
|
@ -0,0 +1,83 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
flake.modules.homeManager.base =
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
options.programs.dev-commit = {
|
||||||
|
repoPaths = lib.mkOption {
|
||||||
|
default = [ ];
|
||||||
|
description = "A list of repository paths that should have automated commits";
|
||||||
|
type = lib.types.listOf lib.types.path;
|
||||||
|
};
|
||||||
|
|
||||||
|
schedule = lib.mkOption {
|
||||||
|
type = lib.types.submodule {
|
||||||
|
options = {
|
||||||
|
enable = lib.mkEnableOption "Enable automated dev commits with systemd";
|
||||||
|
|
||||||
|
time = lib.mkOption {
|
||||||
|
description = ''
|
||||||
|
Time expression for when to run the dev-commit job.
|
||||||
|
|
||||||
|
This uses systemd's `OnCalendar` syntax.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
- "hourly" (once every hour)
|
||||||
|
- "daily" (once per day at midnight)
|
||||||
|
- "Mon *-*-01 12:00:00" (every Monday at 12:00 PM)
|
||||||
|
|
||||||
|
See `man systemd.time` for full syntax reference.
|
||||||
|
'';
|
||||||
|
default = "hourly";
|
||||||
|
type = lib.types.str;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
default = {
|
||||||
|
enable = false;
|
||||||
|
time = "hourly";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config =
|
||||||
|
let
|
||||||
|
cfg = config.programs.dev-commit;
|
||||||
|
repoPaths = lib.concatStringsSep ":" cfg.repoPaths;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
home = {
|
||||||
|
packages = [ pkgs.dev-commit ];
|
||||||
|
|
||||||
|
sessionVariables.DEV_COMMIT_PATHS = repoPaths;
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.user = lib.mkIf cfg.schedule.enable {
|
||||||
|
services.dev-commit = {
|
||||||
|
Install.WantedBy = [ "default.target" ];
|
||||||
|
|
||||||
|
Service = {
|
||||||
|
Environment = [ "DEV_COMMIT_PATHS=${repoPaths}" ];
|
||||||
|
ExecStart = "${lib.getExe pkgs.dev-commit}";
|
||||||
|
Type = "oneshot";
|
||||||
|
};
|
||||||
|
|
||||||
|
Unit.Description = "dev-commit";
|
||||||
|
};
|
||||||
|
|
||||||
|
timers.dev-commit = {
|
||||||
|
Install.WantedBy = [ "timers.target" ];
|
||||||
|
|
||||||
|
Timer = {
|
||||||
|
OnCalendar = cfg.schedule.time;
|
||||||
|
Unit = "dev-commit.service";
|
||||||
|
};
|
||||||
|
|
||||||
|
Unit.Description = "Runs automated development commits in select project repositories.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue