Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
elythh committed Aug 30, 2024
1 parent bfc25d8 commit 0117195
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/nixos/programs/graphical/apps/bitwarden/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@
...
}:
let
inherit (lib) mkEnableOption;
inherit (lib) mkIf mkEnableOption;

cfg = config.${namespace}.programs.graphical.apps.bitwarden;
in
{
options.${namespace}.programs.graphical.apps.bitwarden = {
enable = mkEnableOption "Wether or not to enable bitwarden";
};
config = lib.mkIf cfg {

config = mkIf cfg {
environment.systemPackages = with pkgs; [ bitwarden ];
};
}

0 comments on commit 0117195

Please sign in to comment.