2023-05-10 19:59:21 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
../shared.nix
|
|
|
|
|
];
|
|
|
|
|
|
2023-05-11 17:31:03 +02:00
|
|
|
networking = {
|
|
|
|
|
hostName = "laptop";
|
|
|
|
|
};
|
2023-05-11 15:36:33 +02:00
|
|
|
|
|
|
|
|
services.xserver.libinput.enable = true;
|
2023-05-10 19:59:21 +02:00
|
|
|
}
|