9 lines
121 B
Nix
9 lines
121 B
Nix
{pkgs, ...}: {
|
|
home.file = {
|
|
".config/anyrun".source = ../anyrun;
|
|
};
|
|
|
|
home.packages = [
|
|
pkgs.anyrun
|
|
];
|
|
}
|