diff options
author | tv <tv@krebsco.de> | 2025-06-05 17:58:16 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2025-06-05 18:00:34 +0200 |
commit | 467fdc2bdd95bbb977c9b30efbe06f006e363c31 (patch) | |
tree | 69866c1467ffc0d383b18cdafc05b126c9502f19 /modules | |
parent | 5650362c7d14412eb5b71bd63078fdec79440654 (diff) |
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hw.nix | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/hw.nix b/modules/hw.nix deleted file mode 100644 index 653b04f..0000000 --- a/modules/hw.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ lib, mylib, ... }: let - local.types.screen = lib.types.submodule { - options.width = lib.mkOption { - type = mylib.types.uint; - }; - options.height = lib.mkOption { - type = mylib.types.uint; - }; - }; -in { - options.tv.hw.screens = lib.mkOption { - type = lib.types.attrsOf local.types.screen; - default = {}; - }; -} |