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