mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 11:31:36 +01:00
22 lines
404 B
Nix
22 lines
404 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../shared.nix
|
|
];
|
|
|
|
networking.hostName = "laptop";
|
|
|
|
hardware.firmware = [ pkgs.broadcom-bt-firmware ];
|
|
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
|
|
|
home-manager.users.thiloho = { pkgs, ... }: {
|
|
programs.git = {
|
|
signing = {
|
|
key = "86C465C22C8A4D56";
|
|
};
|
|
};
|
|
};
|
|
}
|