add bitwarden-desktop
This commit is contained in:
parent
d429fbd1d6
commit
0275bf10c1
@ -51,6 +51,7 @@ in
|
|||||||
ghidra.enable = true;
|
ghidra.enable = true;
|
||||||
firejail.enable = true;
|
firejail.enable = true;
|
||||||
wireshark.enable = true;
|
wireshark.enable = true;
|
||||||
|
bitwarden.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -47,6 +47,7 @@ in
|
|||||||
chromium.enable = true;
|
chromium.enable = true;
|
||||||
firejail.enable = true;
|
firejail.enable = true;
|
||||||
wireshark.enable = true;
|
wireshark.enable = true;
|
||||||
|
bitwarden.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
22
modules/nix/office/bitwarden.nix
Normal file
22
modules/nix/office/bitwarden.nix
Normal file
@ -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 = [
|
imports = [
|
||||||
./aegisub.nix
|
./aegisub.nix
|
||||||
|
./bitwarden.nix
|
||||||
./blender.nix
|
./blender.nix
|
||||||
./inkscape.nix
|
./inkscape.nix
|
||||||
./kdenlive.nix
|
./kdenlive.nix
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user