2025-10-18 18:35:53 -04:00
|
|
|
{ config, pkgs, lib, inputs, ... }:
|
2025-08-31 01:47:57 -04:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[
|
|
|
|
|
./hardware-configuration.nix
|
2025-09-13 15:10:42 -04:00
|
|
|
../../modules/kanata.nix
|
2025-09-13 19:23:00 -04:00
|
|
|
../../modules/laptop.nix
|
|
|
|
|
../../modules/efi.nix
|
|
|
|
|
../../modules/hypr.nix
|
2025-10-18 18:35:53 -04:00
|
|
|
../../modules/syncthing.nix
|
2025-08-31 01:47:57 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
networking.hostName = "syntheticnexus";
|
2025-10-18 18:35:53 -04:00
|
|
|
# Overriding this, as the touchpad doesn't work properly anymore.
|
|
|
|
|
services.libinput.enable = lib.mkForce false;
|
2025-08-31 01:47:57 -04:00
|
|
|
system.stateVersion = "25.05";
|
|
|
|
|
}
|