20 lines
440 B
Nix
20 lines
440 B
Nix
{ config, pkgs, self, ... }:
|
|
|
|
{
|
|
# Minimal system configuration
|
|
environment.systemPackages = [ pkgs.vim ];
|
|
|
|
services.nix-daemon.enable = true;
|
|
|
|
nix.settings.experimental-features = "nix-command flakes";
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
# Set Git commit hash for darwin-version.
|
|
system.configurationRevision = self.rev or self.dirtyRev or null;
|
|
|
|
system.stateVersion = 4;
|
|
|
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
|
}
|