All checks were successful
Check Flake / check-flake (push) Successful in 1m14s
14 lines
211 B
Nix
14 lines
211 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
# don't use remote builders
|
|
nix.distributedBuilds = lib.mkForce false;
|
|
|
|
de.enable = true;
|
|
de.touchpad.enable = true;
|
|
}
|