NixOSDots/hosts/macos/home.nix

22 lines
398 B
Nix

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