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

17 lines
244 B
Nix

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