40 lines
1,000 B
Nix
40 lines
1,000 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
userSettings,
|
|
systemSettings,
|
|
...
|
|
}: {
|
|
imports =
|
|
[
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
#set up nixvim
|
|
# ../../modules/nixvim
|
|
]
|
|
++ lib.optionals userSettings.darwinTiling [../../modules/macos/tiling/sketchybar-home.nix];
|
|
|
|
programs = import ../../modules/shared/homeManagerPrograms.nix {inherit inputs config pkgs lib userSettings systemSettings;};
|
|
|
|
home = {
|
|
inherit (userSettings) username;
|
|
# homeDirectory = systemSettings.homeConfig;
|
|
# shell = pkgs.fish;
|
|
stateVersion = "23.05"; # Please read the comment before changing.
|
|
|
|
packages = pkgs.callPackage ../../modules/shared/packages.nix {inherit systemSettings;};
|
|
|
|
# file = {
|
|
# ".config/sketchybar" = {
|
|
# source = ../../modules/macos/tiling/sketchybar;
|
|
# recursive = true;
|
|
# onChange = "${pkgs.sketchybar}/bin/sketchybar --reload";
|
|
# };
|
|
# };
|
|
|
|
sessionPath = [
|
|
"$HOME/.emacs.d/bin"
|
|
];
|
|
};
|
|
}
|