feat(nix-darwin): add config for apavel-a01

This commit is contained in:
reo101 2022-11-22 23:36:10 +02:00
parent 9032738351
commit 850280f483
3 changed files with 175 additions and 1 deletions

View file

@ -0,0 +1,19 @@
{ inputs, outputs, lib, config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [];
# environment.darwinConfig = builtins.toString ./configuration.nix;
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
nix.package = pkgs.nix;
# Create /etc/zshrc that loads the nix-darwin environment.
programs.zsh.enable = true; # default shell on catalina
# Used for backwards compatibility, please read the changelog before changing.
# > darwin-rebuild changelog
system.stateVersion = 4;
}