nixcfg/hosts/fallarbor/home.nix
2024-04-28 13:52:02 -04:00

19 lines
310 B
Nix

{
inputs,
config,
pkgs,
lib,
...
}: {
home-manager.users = {
aly = {
imports = [../../homeManagerModules ../../aly.nix];
home.stateVersion = "23.11";
};
dustin = {
imports = [../../homeManagerModules ../../dustin.nix];
home.stateVersion = "23.11";
};
};
}