11 lines
311 B
Nix
11 lines
311 B
Nix
{ self, inputs, ... }: {
|
|
flake.modules.homeManager.brave = {
|
|
programs.brave = {
|
|
enable = true;
|
|
extensions = [
|
|
# https://chromewebstore.google.com/detail/1password-%E2%80%93-password-mana/aeblfdkhhhdcdjpifhhbdiojplfjncoa
|
|
"aeblfdkhhhdcdjpifhhbdiojplfjncoa"
|
|
];
|
|
};
|
|
};
|
|
} |