blob: a626c7f2b7bb817b546ebe2ce14809e4e09b82cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Work
# System configuration for work vm
{lib, ...}: {
# options
hostName = "work";
user = "fmurphy";
email = "fmurphy@redcom.com";
minimal = true;
# packages
extraHome = {
programs.git = {
signing.signByDefault = lib.mkForce false;
};
};
# modules
development = {
c.enable = true;
lua.enable = true;
web.enable = true;
};
}
|