summaryrefslogtreecommitdiff
path: root/hosts/work
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/work')
-rw-r--r--hosts/work/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/hosts/work/default.nix b/hosts/work/default.nix
new file mode 100644
index 0000000..7427945
--- /dev/null
+++ b/hosts/work/default.nix
@@ -0,0 +1,32 @@
+# Work
+# System configuration for work vm
+{
+ lib,
+ config,
+ pkgs,
+ inputs,
+ ...
+}: {
+ # options
+ hostName = "work";
+ user = "fmurphy";
+ minimal = true;
+
+ # packages
+ extraHome = {
+ home.packages = with pkgs; [
+ inputs.self.packages.${system}.arcanist
+ ];
+
+ programs.git = {
+ signing.signByDefault = lib.mkForce false;
+ };
+ };
+
+ # modules
+ development = {
+ c.enable = true;
+ lua.enable = true;
+ web.enable = true;
+ };
+}