Move variables to more convenient folder

This commit is contained in:
Jimbo 2024-11-24 16:53:49 -05:00
parent 87a53e364f
commit 9c03712908
30 changed files with 159 additions and 45 deletions

View file

@ -0,0 +1,15 @@
{ lib, config, ... }:
{
options.displays = lib.mkOption {
type = lib.types.attrs;
default = {};
};
config.displays = {
d1 = "DP-2";
d2 = "DP-3";
d3 = "DP-1";
d4 = "HDMI-A-1";
dI = "eDP-1";
};
}