summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2025-06-05 17:58:16 +0200
committertv <tv@krebsco.de>2025-06-05 18:00:34 +0200
commit467fdc2bdd95bbb977c9b30efbe06f006e363c31 (patch)
tree69866c1467ffc0d383b18cdafc05b126c9502f19 /modules
parent5650362c7d14412eb5b71bd63078fdec79440654 (diff)
tv.hw.screens: RIPHEADmaster
Diffstat (limited to 'modules')
-rw-r--r--modules/hw.nix15
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 = {};
- };
-}