summaryrefslogtreecommitdiff
path: root/hosts/work/default.nix
blob: 74279456190ed928f40dff3400f511c147ae666c (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
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;
  };
}