11 lines
154 B
Nix
11 lines
154 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
nathan = {
|
||
|
programs = {
|
||
|
devel = { core = true; };
|
||
|
# util = { git = { sshSign = true; }; };
|
||
|
};
|
||
|
};
|
||
|
}
|