config/users/chloe/home.nix
chloe caruso 24d8eeb413 reorganize "hosts/" into "users/"
the plan here is a user owns one or multiple machines:

users/
+-- chloe/
|   +-- home.nix               # apply to all
|   +-- sandwich/
|   |   +-- configuration.nix  # per machine
|   |   +-- home.nix
|   +-- paperback/
|       ...
+-- natalie/
    ...
2025-05-05 19:05:37 -07:00

29 lines
669 B
Nix

{
inputs,
config,
pkgs,
lib,
userSettings,
systemSettings,
...
}: {
imports = [
inputs.nixvim.homeManagerModules.nixvim
#set up nixvim
# ../../modules/nixvim
];
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;};
sessionPath = [
"$HOME/.emacs.d/bin"
];
};
}