summaryrefslogtreecommitdiff
path: root/modules/darwin/base.nix
blob: 9fc0d86f980ad9d041a37f667752b0bc437f7ff3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  lib,
  inputs,
  ...
}: {
  imports = [../shared];

  # not sure why i have to force this
  environment.etc."nix/inputs/nixpkgs".source = lib.mkForce inputs.nixpkgs.outPath;

  programs = {
    bash.enable = true;
    vim.enable = true;
    zsh.enable = true;
  };

  services.nix-daemon.enable = true;
}