add symlink option

This commit is contained in:
Asaki Yuki 2026-04-10 22:58:40 +07:00
parent e829bedfe3
commit aedfd070b9
8 changed files with 71 additions and 37 deletions

8
options/desktop/file.nix Normal file
View file

@ -0,0 +1,8 @@
{ lib, ... }: {
options.device = {
symlink = lib.mkOption {
default = {};
type = lib.type.attrsOf lib.types.str;
};
};
}