adds pinned apps and wallpaper
This commit is contained in:
parent
e3657a00b7
commit
2528929a61
@ -1,10 +1,30 @@
|
||||
{ pkgs, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
dconf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
# Set the color scheme to dark
|
||||
"org/gnome/desktop/interface".color-scheme = "prefer-dark";
|
||||
|
||||
# Pinned apps
|
||||
"org/gnome/shell" = {
|
||||
favorite-apps = [
|
||||
"io.github.zen_browser.zen.desktop"
|
||||
"code.desktop"
|
||||
"spotify.desktop"
|
||||
"vesktop.desktop"
|
||||
"kitty.desktop"
|
||||
"org.gnome.Geary.desktop"
|
||||
];
|
||||
};
|
||||
|
||||
# Set wallpaper
|
||||
"org/gnome/desktop/background" = {
|
||||
picture-uri-dark = "file:///${config.home.homeDirectory}/dotfiles/secrets/wp/9.jpg";
|
||||
picture-uri = "file:///${config.home.homeDirectory}/dotfiles/secrets/wp/9.jpg";
|
||||
picture-options = "zoom";
|
||||
primary-color = "#000000";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user