mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-14 18:21:41 +03:00
4e5b870ec2
It can, instead, be re-implemented as alternative commands.
18 lines
241 B
Nix
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;
|
|
};
|
|
};
|
|
}
|