add bitwarden-desktop
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) mkIf mkOption types;
|
||||
in
|
||||
{
|
||||
options.smayzy.bitwarden.enable = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "bitwarden";
|
||||
};
|
||||
|
||||
config = mkIf config.smayzy.bitwarden.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
bitwarden-desktop
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -2,6 +2,7 @@
|
||||
{
|
||||
imports = [
|
||||
./aegisub.nix
|
||||
./bitwarden.nix
|
||||
./blender.nix
|
||||
./inkscape.nix
|
||||
./kdenlive.nix
|
||||
|
||||
Reference in New Issue
Block a user