Files
nixos-config/nixos-configurations/laptop/default.nix
2023-06-12 14:13:39 +02:00

19 lines
262 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
../shared.nix
];
networking.hostName = "laptop";
home-manager.users.thiloho = { pkgs, ... }: {
programs.git = {
signing = {
key = "86C465C22C8A4D56";
};
};
};
}