nixos-config/profiles/workspace/autoRun.nix

10 lines
173 B
Nix
Raw Permalink Normal View History

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