10 lines
173 B
Nix
10 lines
173 B
Nix
{ config, pkgs, lib, ... }: {
|
|
home-manager.users.balsoft = {
|
|
programs.nix-index.enable = true;
|
|
};
|
|
|
|
environment.sessionVariables = {
|
|
NIX_AUTO_RUN = "1";
|
|
};
|
|
}
|