xin/lib/default.nix

123 lines
2.6 KiB
Nix
Raw Permalink Normal View History

2023-09-12 08:44:05 -06:00
{ lib, ... }:
let
inherit (builtins) toString readFile fromJSON filter;
2023-09-12 08:44:05 -06:00
getPrStatus = pr:
let
prstr = toString pr;
prStatus = fromJSON (readFile ../pull_requests/${prstr}.json);
in
2023-07-11 09:12:50 -06:00
prStatus;
prIsOpen = {
2023-09-12 08:44:05 -06:00
option = pr: a:
let
prStatus = getPrStatus pr;
in
2023-07-11 09:12:50 -06:00
if prStatus.status == "open"
then a
2023-09-12 08:44:05 -06:00
else { };
pkg = pr: localPkg: upstreamPkg:
let
prStatus = getPrStatus pr;
in
2023-07-11 09:12:50 -06:00
if prStatus.status == "open"
then localPkg
else
lib.warn
2023-09-12 08:44:05 -06:00
"PR: ${toString pr} (${prStatus.title}) is complete, ignoring pkg..."
upstreamPkg;
2023-09-12 08:44:05 -06:00
overlay = pr: overlay:
let
prStatus = getPrStatus pr;
in
2023-07-11 09:12:50 -06:00
if pr == 0 || prStatus.status == "open"
then overlay
else
lib.warn "PR: ${
toString pr
2023-09-12 08:44:05 -06:00
} (${prStatus.title}) is complete, ignoring overlay..."
(_: _: { });
};
todo = msg: lib.warn "TODO: ${msg}";
filterList = pkgList: filter (x: x != null) pkgList;
2023-02-02 05:35:19 -07:00
mkCronScript = name: src: ''
. /etc/profile;
set -x
# autogenreated ${name}
${src}
'';
2023-03-03 07:06:30 -07:00
jobToUserService = job: {
name = "${job.name}";
value = {
script = mkCronScript "${job.name}_script" job.script;
inherit (job) startAt path;
2023-09-12 08:44:05 -06:00
serviceConfig = { Type = "oneshot"; };
2023-03-03 07:06:30 -07:00
};
};
2023-02-02 05:35:19 -07:00
jobToService = job: {
name = "${job.name}";
value = {
script = mkCronScript "${job.name}_script" job.script;
inherit (job) startAt path;
serviceConfig = {
User = "${job.user}";
2023-06-16 10:27:45 -06:00
Type = "oneshot";
};
2023-02-02 05:35:19 -07:00
};
};
buildShell = pkgs:
pkgs.mkShell {
shellHook = ''
PS1='\u@\h:\w; '
( . ./common.sh; start ) || true;
'';
nativeBuildInputs = with pkgs; [
2023-05-23 12:05:33 -06:00
curl
dasel
deadnix
git
2023-03-02 06:34:36 -07:00
git-bug
jo
jq
nil
nix-diff
nix-output-monitor
nix-prefetch-github
shfmt
sops
ssh-to-age
ssh-to-pgp
statix
];
};
# Set our configurationRevison based on the status of our git repo.
# If the repo is dirty, disable autoUpgrade as it means we are
# testing something.
2023-09-12 08:44:05 -06:00
buildVer = self:
let
state = self.rev or "DIRTY";
in
{
system.configurationRevision = state;
system.autoUpgrade.enable = lib.mkDefault (state != "DIRTY");
};
2023-02-02 05:35:19 -07:00
xinlib = {
2023-07-11 09:12:50 -06:00
inherit
buildVer
mkCronScript
jobToUserService
jobToService
buildShell
prIsOpen
filterList
todo
;
};
2023-07-11 09:12:50 -06:00
in
2023-09-12 08:44:05 -06:00
xinlib