mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 19:41:35 +01:00
19 lines
262 B
Nix
19 lines
262 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../shared.nix
|
|
];
|
|
|
|
networking.hostName = "laptop";
|
|
|
|
home-manager.users.thiloho = { pkgs, ... }: {
|
|
programs.git = {
|
|
signing = {
|
|
key = "86C465C22C8A4D56";
|
|
};
|
|
};
|
|
};
|
|
}
|