Files
nixos-config/nixos-configurations/laptop/default.nix
2023-05-11 17:37:39 +02:00

16 lines
208 B
Nix

{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../shared.nix
];
networking = {
hostName = "laptop";
};
services.xserver.libinput.enable = true;
}