Added Brightnessctl

This commit is contained in:
2025-09-06 01:07:46 +02:00
parent 82a87c6e15
commit 4f448dd0ff
6 changed files with 22 additions and 135 deletions

14
darwin/macbook.nix Normal file
View File

@@ -0,0 +1,14 @@
{ pkgs, ... }:
{
# macOS-specific settings
services.nix-daemon.enable = true;
programs.zsh.enable = true;
environment.systemPackages = with pkgs; [
neovim
git
];
# System settings
system.stateVersion = 4;
nixpkgs.hostPlatform = "aarch64-darwin";
}