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

20 lines
399 B
Nix
Raw Normal View History

2023-08-06 00:09:03 +02:00
{ config, ... }:
{
imports = [
./hardware-configuration.nix
2023-07-02 00:18:17 +02:00
../shared-desktop.nix
../shared.nix
];
networking.hostName = "laptop";
2023-05-11 15:36:33 +02:00
2023-07-17 10:16:28 +02:00
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
home-manager.users.thiloho = { pkgs, ... }: {
2023-08-21 08:59:12 +02:00
programs.git.signing.key = "E78D9CC2F9EFC890";
2023-07-02 00:18:17 +02:00
home.stateVersion = "23.05";
};
2023-07-02 00:18:17 +02:00
system.stateVersion = "23.05";
}