29 lines
438 B
Nix
29 lines
438 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
nathan = {
|
|
services = {
|
|
email = {
|
|
# TODO: enable
|
|
enable = false;
|
|
};
|
|
};
|
|
programs = {
|
|
util = {
|
|
productivity = true;
|
|
git.sshSign = true;
|
|
};
|
|
devel = {
|
|
core = true;
|
|
rust = true;
|
|
idris2 = true;
|
|
};
|
|
emacs = {
|
|
enable = true;
|
|
# TODO: enable
|
|
service = false;
|
|
};
|
|
};
|
|
};
|
|
}
|