10 lines
173 B
Nix
Raw Normal View History

2021-06-11 14:52:11 +03:00
{ config, pkgs, lib, ... }: {
home-manager.users.balsoft = {
2021-11-21 21:44:14 +03:00
programs.nix-index.enable = true;
2021-06-11 14:52:11 +03:00
};
environment.sessionVariables = {
NIX_AUTO_RUN = "1";
};
}