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