autostart and gnome dock

This commit is contained in:
Daniel Langbein 2024-02-04 15:07:37 +01:00
parent 257983c27d
commit d7da55f2c1
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 17 additions and 8 deletions

View File

@ -22,19 +22,19 @@
source = (pkgs.signal-desktop + "/share/applications/signal-desktop.desktop");
};
home.file."thunderbird" = lib.mkIf (osConfig.networking.hostName == "yodaTux") {
target = ".config/autostart/thunderbird.desktop";
source = (pkgs.thunderbird + "/share/applications/thunderbird.desktop");
};
# home.file."thunderbird" = lib.mkIf (osConfig.networking.hostName == "yodaTux") {
# target = ".config/autostart/thunderbird.desktop";
# source = (pkgs.thunderbird + "/share/applications/thunderbird.desktop");
# };
home.file."org.gnome.Solanum" = {
target = ".config/autostart/org.gnome.Solanum.desktop";
source = (pkgs.gnome-solanum + "/share/applications/org.gnome.Solanum.desktop");
};
home.file."org.gnome.Fractal" = lib.mkIf (osConfig.networking.hostName == "yodaTux") {
target = ".config/autostart/org.gnome.Fractal.desktop";
source = (pkgs.fractal + "/share/applications/org.gnome.Fractal.desktop");
};
# home.file."org.gnome.Fractal" = lib.mkIf (osConfig.networking.hostName == "yodaTux") {
# target = ".config/autostart/org.gnome.Fractal.desktop";
# source = (pkgs.fractal + "/share/applications/org.gnome.Fractal.desktop");
# };
};
}

View File

@ -24,4 +24,13 @@
unstable.obsidian # Markdown notes
];
};
programs.dconf.enable = true;
home-manager.users.yoda = { osConfig, config, pkgs, lib, ... }: {
dconf.settings = {
"org/gnome/shell" = {
favorite-apps = ["obsidian.desktop"];
};
};
};
}