Files
nixos-config/nixos-configurations/laptop/default.nix

24 lines
425 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../shared.nix
];
2023-05-11 19:11:16 +02:00
networking.hostName = "laptop";
2023-05-11 15:36:33 +02:00
services.xserver.libinput.enable = true;
2023-05-11 19:31:42 +02:00
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
2023-05-25 11:40:57 +02:00
home-manager.users.thiloho = { pkgs, ... }: {
programs.git = {
signing = {
key = "86C465C22C8A4D56";
};
};
};
}