24 lines
411 B
Nix
24 lines
411 B
Nix
{ ... }:
|
|
{
|
|
frogeye = {
|
|
desktop = {
|
|
xorg = true;
|
|
x11_screens = [ "HDMI-1-0" "eDP1" ];
|
|
maxVideoHeight = 1440;
|
|
numlock = true;
|
|
phasesBrightness = {
|
|
enable = true;
|
|
backlight = "intel_backlight";
|
|
jour = 40000;
|
|
crepuscule = 10000;
|
|
nuit = 1;
|
|
};
|
|
};
|
|
dev = {
|
|
docker = true;
|
|
};
|
|
extra = true;
|
|
gaming = true;
|
|
};
|
|
}
|