18 lines
446 B
Nix
Executable file
18 lines
446 B
Nix
Executable file
{ config, pkgs, lib, inputs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
../../modules/kanata/kanata.nix
|
|
../../modules/laptop.nix
|
|
../../modules/efi.nix
|
|
../../modules/hypr.nix
|
|
../../modules/syncthing.nix
|
|
];
|
|
|
|
networking.hostName = "cantor";
|
|
# Overriding this, as the touchpad doesn't work properly anymore.
|
|
services.libinput.enable = lib.mkForce false;
|
|
system.stateVersion = "25.05";
|
|
}
|