mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
12 lines
195 B
Nix
12 lines
195 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
(discord-krisp.override {
|
|
withOpenASAR = true;
|
|
withMoonlight = true;
|
|
})
|
|
];
|
|
|
|
programs.moonlight = {
|
|
enable = true;
|
|
};
|
|
}
|