19 lines
295 B
Nix
19 lines
295 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
./locales.nix
|
|
./nix.nix
|
|
./nix-ld.nix
|
|
];
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.extraSpecialArgs = {
|
|
inherit inputs outputs;
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|