16 lines
268 B
Nix
Raw Normal View History

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