1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-14 09:16:39 +03:00
mobile-nixos/modules/hardware-screen.nix
Samuel Dionne-Riel 4e5b870ec2 framebuffer: Removes fb.modes support...
It can, instead, be re-implemented as alternative commands.
2018-07-05 15:00:24 -04:00

18 lines
241 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.mobile.hardware.screen;
in
{
options.mobile.hardware.screen = {
width = mkOption {
type = types.int;
};
height = mkOption {
type = types.int;
};
};
}