9 lines
147 B
Nix
9 lines
147 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
nathan = {
|
||
|
programs = { util = { git = { gpgSign = false; }; }; };
|
||
|
config = { isDesktop = true; };
|
||
|
};
|
||
|
}
|