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

22 lines
404 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../shared.nix
];
networking.hostName = "laptop";
2023-05-11 15:36:33 +02:00
2023-06-12 13:49:43 +02:00
hardware.firmware = [ pkgs.broadcom-bt-firmware ];
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";
2023-05-25 11:40:57 +02:00
};
};
};
}