2025-04-14 23:30:50 +02:00
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
|
2025-04-12 19:45:01 +02:00
|
|
|
{
|
|
|
|
imports = [
|
2025-04-14 23:30:50 +02:00
|
|
|
(lib.custom.relativeToRoot "shared/modules")
|
2025-04-12 19:45:01 +02:00
|
|
|
./battery.nix
|
|
|
|
./bluetooth.nix
|
2025-04-14 23:30:50 +02:00
|
|
|
./hardware-configuration.nix
|
2025-04-12 19:45:01 +02:00
|
|
|
./security.nix
|
2025-04-14 23:30:50 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
hyprsunset # Blue light filter
|
2025-04-12 19:45:01 +02:00
|
|
|
];
|
|
|
|
}
|