mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
17 lines
240 B
Nix
17 lines
240 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
home-manager.users = {
|
|
aly = {
|
|
imports = [../../homeManagerModules ../../aly.nix];
|
|
};
|
|
dustin = {
|
|
imports = [../../homeManagerModules ../../dustin.nix];
|
|
};
|
|
};
|
|
}
|