forked from foxora/nix
#1 hater of infinite recursion
This commit is contained in:
parent
43b04c3f8a
commit
a5bb1d1cc1
31 changed files with 946 additions and 851 deletions
|
|
@ -1,20 +1,19 @@
|
|||
{ config, inputs, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
{upkgs, ...}: {
|
||||
home.packages = with upkgs; [
|
||||
keepassxc
|
||||
];
|
||||
|
||||
systemd.user.services.keepassxc = {
|
||||
Unit = {
|
||||
Description = "KeePassXC password manager";
|
||||
After = [ "graphical-session-pre.target" ];
|
||||
PartOf = [ "graphical-session.target" ];
|
||||
After = ["graphical-session-pre.target"];
|
||||
PartOf = ["graphical-session.target"];
|
||||
};
|
||||
Service = {
|
||||
Description = "${pkgs.keepassxc}/bin/keepassxc";
|
||||
Description = "${upkgs.keepassxc}/bin/keepassxc";
|
||||
Restart = "on-failure";
|
||||
};
|
||||
Install.WantedBy = [ "graphical-session.target" ];
|
||||
Install.WantedBy = ["graphical-session.target"];
|
||||
};
|
||||
|
||||
xdg.configFile."keepassxc/keepassxc.ini" = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue