blob: 96871201cc11914a32229e2f1a67c0454d56308b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{lib, ...}:
with lib; {
nixfiles.modules.vscode.enable = true;
# TODO Make this per-directory/per-remote.
hm.programs.git = {
userName = mkForce "Firstname Lastname";
userEmail = mkForce "username@work.com";
signing.key = mkForce "@PGP_KEY@";
extraConfig."url \"git@gitlab.services.work.com:\"".insteadOf = "work:";
};
networking = {
computerName = mkForce this.hostname;
hostName = mkForce null; # We don't want to override this.
};
}
|