15 lines
243 B
Nix
15 lines
243 B
Nix
|
{ config, pkgs, lib, ... }: {
|
||
|
home-manager.users.balsoft = {
|
||
|
|
||
|
programs.command-not-found = {
|
||
|
enable = true;
|
||
|
dbPath = ../../misc/programs.sqlite;
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
environment.sessionVariables = {
|
||
|
NIX_AUTO_RUN = "1";
|
||
|
};
|
||
|
}
|