nixos/home-manager/software/keeweb/default.nix
Andreas Zweili 1c08608250 Correct the autostart scripts
With disown the applications are running in the wrong context and when I
    for example open a link it doesn't open in the browser.
2022-04-17 20:44:40 +02:00

9 lines
139 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
keeweb
];
home.file.".config/qtile/autostart.d/keeweb.sh".source = ./keeweb.sh;
}