- 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
20 lines
409 B
Nix
20 lines
409 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.programs.git-workspace;
|
|
in {
|
|
options.programs.git-workspace = {
|
|
enable = lib.mkEnableOption "git-workspace";
|
|
package = lib.mkOption {
|
|
type = lib.types.package;
|
|
default = pkgs.git-workspace;
|
|
description = "The git-workspace to use";
|
|
};
|
|
};
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = [pkgs.git-workspace];
|
|
};
|
|
}
|