Things
- new host `devbox`
- `flake-parts` module to manage agenix secrets
- Searx -> Google again 😩 (it was too slow)
- WIP `git-workspace` module for `home-manager`
- `cgit` module
- `spotify-adblocked` packaged
This commit is contained in:
parent
29bea282e7
commit
52298435cd
23 changed files with 947 additions and 67 deletions
45
hmModules/git-workspace/default.nix
Normal file
45
hmModules/git-workspace/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{age, ...}: {
|
||||
imports = [
|
||||
./git-workspace-program.nix
|
||||
./git-workspace-service.nix
|
||||
];
|
||||
|
||||
programs.git-workspace.enable = true;
|
||||
services.git-workspace = {
|
||||
enable = true;
|
||||
frequency = "04:00:00";
|
||||
environmentFile = age.secrets.git-workspace-tokens.path;
|
||||
workspaces = {
|
||||
aciceri = {
|
||||
provider = [
|
||||
{
|
||||
provider = "github";
|
||||
name = "aciceri";
|
||||
path = "/home/ccr/projects";
|
||||
skips_forks = false;
|
||||
}
|
||||
];
|
||||
};
|
||||
mlabs = {
|
||||
provider = [
|
||||
{
|
||||
provider = "github";
|
||||
name = "mlabs-haskell";
|
||||
path = "/home/ccr/projects";
|
||||
skip_forks = false;
|
||||
}
|
||||
];
|
||||
};
|
||||
ethereansos = {
|
||||
provider = [
|
||||
{
|
||||
provider = "github";
|
||||
name = "EthereansOS";
|
||||
path = "/home/ccr/projects";
|
||||
skip_forks = false;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue