mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
31 lines
610 B
Nix
31 lines
610 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
brotab
|
|
oath-toolkit
|
|
];
|
|
programs.vicinae = {
|
|
enable = true;
|
|
systemd.enable = true;
|
|
extensions =
|
|
(with inputs.vicinae-extensions.packages.${pkgs.stdenv.hostPlatform.system}; [
|
|
bluetooth
|
|
nix
|
|
mullvad
|
|
player-pilot
|
|
wifi-commander
|
|
ssh
|
|
niri
|
|
brotab
|
|
])
|
|
++ [
|
|
(inputs.vicinae.packages.${pkgs.stdenv.hostPlatform.system}.mkVicinaeExtension rec {
|
|
pname = "vicinae-rbw";
|
|
src = inputs.${pname}.outPath;
|
|
})
|
|
];
|
|
};
|
|
}
|