summaryrefslogtreecommitdiff
path: root/hosts/work/default.nix
blob: 083c2eccb5d49f227ce7c534928a02162277a1e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Work
# System configuration for work vm
{
  lib,
  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;
  };
}