Added nix-darwin properly

This commit is contained in:
Tyler Mayoff 2025-02-04 15:18:06 -05:00
parent 1044e1ed1b
commit c45afedd4a
No known key found for this signature in database
GPG key ID: B62A5AFAD8E14845
9 changed files with 82 additions and 42 deletions

View file

@ -1,8 +1,19 @@
{
inputs,
outputs,
lib,
...
}: {
{pkgs, ...}: {
# services.aerospace.enable = true;
imports = [
# ../fish.nix
];
users.users."tyler.mayoff".shell = pkgs.fish;
services.sketchybar.enable = true;
system.stateVersion = 5;
environment.systemPackages = with pkgs; [
pinentry_mac
];
programs.fish.enable = true;
}