mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
a9faa2c7b4
Signed-off-by: Magic_RB <magic_rb@redalder.org>
14 lines
203 B
Nix
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
|
|
'';
|
|
};
|
|
}
|