dotfiles/modules/applications/1password.nix

10 lines
219 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }: {
2022-04-29 02:43:50 +00:00
config = lib.mkIf config.gui.enable {
2022-04-29 02:43:50 +00:00
nixpkgs.config.allowUnfree = true;
home-manager.users.${config.user} = {
2022-04-29 02:43:50 +00:00
home.packages = with pkgs; [ _1password-gui ];
};
};
}