Use 1password as a systemd unit for GUI systems.

This commit is contained in:
James Patrick 2022-03-24 19:39:48 -04:00
parent de52515920
commit 2d190ba3d8

View File

@ -15,11 +15,25 @@ in with lib; {
}; };
}; };
config = mkIf enable { config = mkIf enable (mkMerge [
home-manager.users.james = { (mkIf cfg.cli.enable {
home.packages = with pkgs; home-manager.users.james.home.packages = with pkgs; [ _1password ];
optionals (cfg.gui.enable) [ _1password-gui ] })
++ optionals (cfg.cli.enable) [ _1password ]; (mkIf cfg.gui.enable {
}; home-manager.users.james = {
}; home.packages = with pkgs; [ _1password-gui ];
};
systemd.user.services._1password = {
enable = true;
description = "1password for linux. (PAM not included)";
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = "${pkgs._1password-gui}/bin/1password --silent";
RestartSec = 5;
Restart = "always";
};
};
})
]);
} }