diff --git a/hosts/morphius/configuration.nix b/hosts/morphius/configuration.nix index dfb4fc6..231438e 100644 --- a/hosts/morphius/configuration.nix +++ b/hosts/morphius/configuration.nix @@ -40,7 +40,7 @@ }; stylix = { enable = true; - theme = "gruvbox-dark-pale"; + theme = "vesper"; }; }; diff --git a/hosts/morphius/hardware/default.nix b/hosts/morphius/hardware/default.nix index 40f8d46..948bf71 100644 --- a/hosts/morphius/hardware/default.nix +++ b/hosts/morphius/hardware/default.nix @@ -2,6 +2,7 @@ imports = [ # ./laptop ]; + hardware.sensor.iio.enable = true; services = { logind = { lidSwitch = "ignore"; diff --git a/hosts/morphius/hardware/laptop/default.nix b/hosts/morphius/hardware/laptop/default.nix deleted file mode 100644 index 86ed9a8..0000000 --- a/hosts/morphius/hardware/laptop/default.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ - imports = [ - ./keyboard-fix.nix - ]; -} diff --git a/hosts/morphius/hardware/laptop/keyboard-fix.nix b/hosts/morphius/hardware/laptop/keyboard-fix.nix deleted file mode 100644 index d8119fd..0000000 --- a/hosts/morphius/hardware/laptop/keyboard-fix.nix +++ /dev/null @@ -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"; - }; - }; - }; - }; -}