Compare commits

...

2 commits

2 changed files with 6 additions and 23 deletions

View file

@ -22,5 +22,7 @@
hardware.keyboard.qmk.enable = true; hardware.keyboard.qmk.enable = true;
home-manager.users.toast.home.packages = [pkgs.qmk]; home-manager.users.toast.home.packages = [pkgs.qmk];
home-manager.users.toast.xdg.autostart.enable = true;
boot.plymouth.enable = true; boot.plymouth.enable = true;
} }

View file

@ -34,30 +34,11 @@ in {
# No module for KeePassXC config :( # No module for KeePassXC config :(
home = { home = {
packages = [pkgs.keepassxc]; packages = [pkgs.keepassxc];
file = { file.".config/keepassxc/keepassxc.ini".text = kpxcSettings;
".config/keepassxc/keepassxc.ini".text = kpxcSettings;
# For some reason the autostart .desktop is not the same as the regular one
".config/autostart/org.keepassxc.KeePassXC.desktop".text = ''
[Desktop Entry]
Name=KeePassXC
GenericName=Password Manager
Exec=keepassxc
TryExec=keepassxc
Icon=keepassxc
StartupWMClass=keepassxc
StartupNotify=true
Terminal=false
Type=Application
Version=1.0
Categories=Utility;Security;Qt;
MimeType=application/x-keepass2;
X-GNOME-Autostart-enabled=true
X-GNOME-Autostart-Delay=2
X-KDE-autostart-after=panel
X-LXQt-Need-Tray=true
'';
};
}; };
xdg.autostart.entries = [
"${pkgs.keepassxc}/share/applications/org.keepassxc.KeePassXC.desktop"
];
}; };
}; };
} }