mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 11:31:36 +01:00
16 lines
208 B
Nix
16 lines
208 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
../shared.nix
|
|
];
|
|
|
|
networking = {
|
|
hostName = "laptop";
|
|
};
|
|
|
|
services.xserver.libinput.enable = true;
|
|
}
|