mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 16:29:46 +01:00
20 lines
320 B
Nix
20 lines
320 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
# Refer to the nixOS host for info about home-manager
|
|
imports = [
|
|
../common/home.nix
|
|
];
|
|
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
# Window management (maybe configure it with home-manager)
|
|
yabai
|
|
skhd
|
|
#borders
|
|
];
|
|
stateVersion = "25.11";
|
|
};
|
|
}
|