The other part of dotfiles
This commit is contained in:
parent
2fbfed0e7a
commit
9f1ba4a64b
25 changed files with 1089 additions and 0 deletions
15
modules/services/download-pod.nix
Normal file
15
modules/services/download-pod.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.download-pod;
|
||||
in
|
||||
{
|
||||
options.download-pod = {
|
||||
enable = lib.mkEnableOption "Enable the download searcher stack";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
oci-containers.pods.download = { };
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue