Use nix-index for command-not-found
This commit is contained in:
parent
7e1ef25ec6
commit
771ffc489a
2 changed files with 25 additions and 3 deletions
|
@ -44,12 +44,36 @@
|
|||
htop
|
||||
inotify-tools
|
||||
ncdu
|
||||
nix-index
|
||||
(import ../../programs/pass/default.nix { inherit pkgs; })
|
||||
(import ../../programs/ssh/default.nix { inherit pkgs; })
|
||||
ripgrep
|
||||
unzip
|
||||
youtube-dl
|
||||
];
|
||||
systemd.user = {
|
||||
services.nix-index = {
|
||||
Unit = {
|
||||
Description = "Service to run nix-index";
|
||||
};
|
||||
Service = {
|
||||
Type = "oneshot";
|
||||
ExecStart = "${pkgs.nix-index}/bin/nix-index";
|
||||
};
|
||||
};
|
||||
timers.nix-index = {
|
||||
Unit = {
|
||||
Description = "Timer that starts nix-index every two hours";
|
||||
PartOf = [ "nix-index.service" ];
|
||||
};
|
||||
Timer = {
|
||||
OnCalendar = "00/2:30";
|
||||
};
|
||||
Install = {
|
||||
WantedBy = [ "default.target" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue