mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 02:26:14 +01:00
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
|
||
|
'';
|
||
|
};
|
||
|
}
|