Add overseer CLI for task management
This commit is contained in:
17
flake.lock
generated
17
flake.lock
generated
@@ -495,6 +495,22 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"overseer": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1770220117,
|
||||||
|
"narHash": "sha256-kTIQTxkk+eNZK69hvWQe9Cw/AXH2wxRYaV4AoQZp5KU=",
|
||||||
|
"owner": "dmmulroy",
|
||||||
|
"repo": "overseer",
|
||||||
|
"rev": "81f6015e30a565f0a638d4451ace64bd572c051f",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "dmmulroy",
|
||||||
|
"repo": "overseer",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"colmena": "colmena",
|
"colmena": "colmena",
|
||||||
@@ -510,6 +526,7 @@
|
|||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2",
|
||||||
"nixvim": "nixvim",
|
"nixvim": "nixvim",
|
||||||
"nono": "nono",
|
"nono": "nono",
|
||||||
|
"overseer": "overseer",
|
||||||
"sops-nix": "sops-nix",
|
"sops-nix": "sops-nix",
|
||||||
"zjstatus": "zjstatus"
|
"zjstatus": "zjstatus"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,6 +44,10 @@
|
|||||||
url = "github:lukehinds/nono";
|
url = "github:lukehinds/nono";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
overseer = {
|
||||||
|
url = "github:dmmulroy/overseer";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs @ {flake-parts, ...}:
|
outputs = inputs @ {flake-parts, ...}:
|
||||||
|
|||||||
@@ -37,6 +37,7 @@
|
|||||||
../../profiles/nono.nix
|
../../profiles/nono.nix
|
||||||
../../profiles/neovim
|
../../profiles/neovim
|
||||||
../../profiles/opencode.nix
|
../../profiles/opencode.nix
|
||||||
|
../../profiles/overseer.nix
|
||||||
../../profiles/claude-code.nix
|
../../profiles/claude-code.nix
|
||||||
../../profiles/ripgrep.nix
|
../../profiles/ripgrep.nix
|
||||||
../../profiles/ssh.nix
|
../../profiles/ssh.nix
|
||||||
|
|||||||
24
overlays/overseer.nix
Normal file
24
overlays/overseer.nix
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{inputs}: final: prev: let
|
||||||
|
manifest = (prev.lib.importTOML "${inputs.overseer}/overseer/Cargo.toml").package;
|
||||||
|
in {
|
||||||
|
overseer = prev.rustPlatform.buildRustPackage {
|
||||||
|
pname = manifest.name;
|
||||||
|
version = manifest.version;
|
||||||
|
|
||||||
|
cargoLock.lockFile = "${inputs.overseer}/overseer/Cargo.lock";
|
||||||
|
|
||||||
|
src = "${inputs.overseer}/overseer";
|
||||||
|
|
||||||
|
nativeBuildInputs = with prev; [
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = with prev; [
|
||||||
|
openssl
|
||||||
|
];
|
||||||
|
|
||||||
|
OPENSSL_NO_VENDOR = 1;
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
};
|
||||||
|
}
|
||||||
5
profiles/overseer.nix
Normal file
5
profiles/overseer.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{pkgs, ...}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
overseer
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user