NixOSDots/hosts/macos/home.nix
2025-12-29 19:29:39 +01:00

20 lines
362 B
Nix

{ config, pkgs, inputs, ... }:
{
# Refer to the nixOS host for info about home-manager
imports = [
../common/home.nix
];
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
];
}