dotfiles/nix/secret-lib/mounts.nix
Magic_RB a9faa2c7b4
Add full blowhole system
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-10-18 00:13:22 +02:00

14 lines
203 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.mounts;
in
{
options.mounts = mkOption {
type = with types; attrsOf (attrsOf unspecified);
description = ''
Mounts
'';
};
}