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