NixOSDots/hosts/macos/home.nix
2025-12-28 00:42:03 +01:00

18 lines
357 B
Nix

{ config, pkgs, inputs, ... }:
commonHome // {
# Refer to the nixOS host for info about home-manager
# inherit commonHome;
home.stateVersion = "25.11";
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
# Window management (maybe configure it with home-manager)
yabai
skhd
#borders
];
}