Compare commits

..

No commits in common. "172ca43383f7017930b9230bc5f55870363d96c4" and "7493e0fbac4b8fc7f8636fed8fbfa9e0952829b2" have entirely different histories.

2 changed files with 5 additions and 9 deletions

View file

@ -128,11 +128,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1701539137,
"narHash": "sha256-nVO/5QYpf1GwjvtpXhyxx5M3U/WN0MwBro4Lsk+9mL0=",
"lastModified": 1701156937,
"narHash": "sha256-jpMJOFvOTejx211D8z/gz0ErRtQPy6RXxgD2ZB86mso=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "933d7dc155096e7575d207be6fb7792bc9f34f6d",
"rev": "7c4c20509c4363195841faa6c911777a134acdf3",
"type": "github"
},
"original": {

View file

@ -37,13 +37,9 @@ in {
# This user service makes sure the rbw-agent is started when the user
# session launches.
systemd.user.services.rbw = {
Unit = {
Description = "rbw agent autostart";
After = "graphical-session.target";
PartOf = "graphical-session.target";
};
Unit.Description = "rbw agent autostart";
Install.WantedBy = ["graphical-session.target"];
Install.WantedBy = ["default.target"];
Service = {
ExecStart = "${pkgs.rbw}/bin/rbw-agent";