mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
19 lines
635 B
Nix
19 lines
635 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
# See also:
|
|
# Temporary workaround until https://github.com/nix-community/home-manager/issues/3447 is merged.
|
|
|
|
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
|
home.file.signal-desktop = {
|
|
target = ".config/autostart/" + "signal-desktop" + ".desktop";
|
|
source = (pkgs.signal-desktop + "/share/applications/" + "signal-desktop" + ".desktop");
|
|
};
|
|
|
|
home.file.keepassxc = {
|
|
target = ".config/autostart/" + "org.keepassxc.KeePassXC" + ".desktop";
|
|
source = (pkgs.keepassxc + "/share/applications/" + "org.keepassxc.KeePassXC" + ".desktop");
|
|
};
|
|
};
|
|
}
|