12 lines
245 B
Nix
12 lines
245 B
Nix
{ inputs, outputs, ... }: {
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
];
|
|
|
|
home-manager = {
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
users = {
|
|
lander = import ../home-manager/home.nix;
|
|
};
|
|
};
|
|
}
|