dotfiles/.config/nix/hosts/cantor/configuration.nix

19 lines
439 B
Nix
Raw Normal View History

{ config, pkgs, lib, inputs, ... }:
{
imports =
[
./hardware-configuration.nix
2025-09-13 15:10:42 -04:00
../../modules/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";
}