mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
22 lines
398 B
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
|
|
];
|