fix yakuake autostart config
This commit is contained in:
parent
5d49e7a766
commit
06c4921f3f
1 changed files with 7 additions and 2 deletions
|
@ -1,4 +1,9 @@
|
|||
{ osConfig, pkgs, ... }:
|
||||
{
|
||||
osConfig,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home = {
|
||||
username = "cdombroski";
|
||||
|
@ -10,5 +15,5 @@
|
|||
userName = "Chris Dombroski";
|
||||
userEmail = "cdombroski@gmail.com";
|
||||
};
|
||||
xdg.configFile."autostart/yakuake.desktop".source = "${pkgs.yakuake}/share/applications/org.kde.yakuake.desktop";
|
||||
xdg.configFile."autostart/yakuake.desktop".source = lib.mkIf osConfig.services.displayManager.enable "${pkgs.yakuake}/share/applications/org.kde.yakuake.desktop";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue