hosts/morphius: enable iio for autorotate

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-06-17 14:37:27 +03:00
parent 078351becd
commit ac28a3442f
4 changed files with 2 additions and 27 deletions

View File

@ -40,7 +40,7 @@
}; };
stylix = { stylix = {
enable = true; enable = true;
theme = "gruvbox-dark-pale"; theme = "vesper";
}; };
}; };

View File

@ -2,6 +2,7 @@
imports = [ imports = [
# ./laptop # ./laptop
]; ];
hardware.sensor.iio.enable = true;
services = { services = {
logind = { logind = {
lidSwitch = "ignore"; lidSwitch = "ignore";

View File

@ -1,5 +0,0 @@
{
imports = [
./keyboard-fix.nix
];
}

View File

@ -1,21 +0,0 @@
{
services = {
udev.extraHwdb = ''
evdev:input:b0011v0001p0001eAB83*
KEYBOARD_KEY_d5=sysrq
KEYBOARD_KEY_d4=leftmeta
KEYBOARD_KEY_95=brightnessdown
KEYBOARD_KEY_91=brightnessup
'';
keyd = {
enable = true;
keyboards.default = {
ids = ["0001:0001"];
settings.main = {
camera = "brightnessdown";
prog1 = "brightnessup";
};
};
};
};
}