2019-10-24 02:20:38 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.configuration.desktop;
|
|
|
|
|
2021-11-01 09:20:42 +01:00
|
|
|
in
|
|
|
|
{
|
2019-10-24 02:20:38 +02:00
|
|
|
|
2023-12-13 19:32:02 +01:00
|
|
|
#options.configuration.desktop = {
|
|
|
|
# height = mkOption {
|
|
|
|
# default = 900;
|
|
|
|
# type = with types; int;
|
|
|
|
# description = ''
|
|
|
|
# height of the dektop monitor
|
|
|
|
# '';
|
|
|
|
# };
|
|
|
|
# width = mkOption {
|
|
|
|
# default = 1600;
|
|
|
|
# type = with types; int;
|
|
|
|
# description = ''
|
|
|
|
# width of the desktop monitor
|
|
|
|
# '';
|
|
|
|
# };
|
|
|
|
#};
|
2019-10-24 02:20:38 +02:00
|
|
|
|
|
|
|
}
|