dotfiles/macos.local/.flake/system/core.nix.org
2024-10-07 18:55:30 -05:00

743 B

System Core

This file imports various system configuration components in addition to enabling flakes and defining the system version.

  { config, pkgs, ... }:

  {
    environment.systemPackages = with pkgs; [
      emacs-macport
      gnupg
      neovim
      yabai
      skhd
    ];

    environment.variables.EDITOR = "nvim";

    programs.gnupg.agent.enable = true;

    services.nix-daemon.enable = true;
    nix.package = pkgs.nix;

    nix.settings.experimental-features = "nix-command flakes";

    programs.zsh.enable = true;

    system.stateVersion = 5;

    nixpkgs.hostPlatform = "aarch64-darwin";

    users.users.jjanzen = {
      name = "jjanzen";
      home = "/Users/jjanzen";
    };
  }