home: setup rbw module
This commit is contained in:
parent
4f0496ca99
commit
b6077dabf3
|
@ -41,7 +41,6 @@ in
|
||||||
mpv
|
mpv
|
||||||
obs-studio
|
obs-studio
|
||||||
pavucontrol
|
pavucontrol
|
||||||
rbw
|
|
||||||
slack
|
slack
|
||||||
spotify
|
spotify
|
||||||
tdesktop
|
tdesktop
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
./laptop.nix
|
./laptop.nix
|
||||||
./lorri.nix
|
./lorri.nix
|
||||||
./mail.nix
|
./mail.nix
|
||||||
|
./rbw.nix
|
||||||
./rofi.nix
|
./rofi.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./themes
|
./themes
|
||||||
|
|
25
home/rbw.nix
Normal file
25
home/rbw.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
inherit (lib)
|
||||||
|
mkEnableOption
|
||||||
|
mkIf
|
||||||
|
;
|
||||||
|
cfg = config.my.home.mail;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.my.home.rbw = {
|
||||||
|
enable = (mkEnableOption "rbw configuration");
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
programs.rbw = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
email = "antoine@alarsyo.net";
|
||||||
|
base_url = "https://pass.alarsyo.net";
|
||||||
|
lock_timeout = 60 * 60 * 12;
|
||||||
|
pinentry = pkgs.pinentry-gnome;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue