13 lines
227 B
Nix
13 lines
227 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [ inputs.home-manager.nixosModules.home-manager ];
|
|
|
|
home-manager = {
|
|
extraSpecialArgs = { inherit inputs; };
|
|
users = {
|
|
alistreaza = import ../home-manager/home.nix;
|
|
};
|
|
};
|
|
}
|