mirror of
https://github.com/mentos1386/dotfiles.git
synced 2024-11-22 15:43:42 +00:00
8 lines
171 B
Nix
8 lines
171 B
Nix
{ lib, config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "tine";
|
|
home.homeDirectory = "/home/tine";
|
|
|
|
programs.git.extraConfig.user.signingkey = lib.mkForce "~/.ssh/id_rsa";
|
|
}
|