Start keepassxc as part of the graphical session
This commit is contained in:
parent
c6db16da29
commit
8bed01e20a
1 changed files with 12 additions and 5 deletions
|
@ -23,12 +23,19 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.users.charlotte = { ... }: {
|
home-manager.users.charlotte = { ... }: {
|
||||||
programs.password-store = {
|
|
||||||
enable = true;
|
|
||||||
settings = { PASSWORD_STORE_DIR = "/home/charlotte/repos/passwords"; };
|
|
||||||
};
|
|
||||||
services.password-store-sync.enable = true;
|
|
||||||
home.packages = [ pkgs.keepassxc ];
|
home.packages = [ pkgs.keepassxc ];
|
||||||
|
systemd.user.services.keepassxc = {
|
||||||
|
Unit = {
|
||||||
|
Description = "KeepassXC startup";
|
||||||
|
PartOf = [ "graphical-session.target" ];
|
||||||
|
After = [ "graphical-session.target" ];
|
||||||
|
};
|
||||||
|
Service = {
|
||||||
|
ExecStart = "${pkgs.keepassxc}/bin/keepassxc";
|
||||||
|
Restart = "always";
|
||||||
|
};
|
||||||
|
Install.WantedBy = [ "graphical-session.target" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue