mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:13:55 -05:00
19 lines
318 B
Nix
19 lines
318 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";
|
|
};
|
|
};
|
|
}
|