Add new wallpaper, update gnome configuration and fully disable Zed AI

features
This commit is contained in:
Jo 2025-09-21 02:51:44 +02:00
parent 8edd189f07
commit c38ecb55a2
6 changed files with 31 additions and 40 deletions

View file

@ -41,18 +41,9 @@ in
### Remove useless features and stuff
show_call_status_icon = false;
collaboration_panel.button = false;
chat_panel.button = "never";
agent = {
version = "2";
button = false;
};
features = {
inline_completion_provider = "none";
edit_prediction_provider = "none";
copilot = false;
};
### Disable AI features entirely
disable_ai = true;
### Formatting and saving settings
formatter = "language_server";
@ -92,7 +83,6 @@ in
# Web dev
html = true;
svelte = true;
ejs = true;
scss = true;
biome = true; # Formatting and utility tool, like ESlint, prettier, etc...

View file

@ -65,7 +65,7 @@ in
};
};
wallpaper =
mkOpt path ../wallpapers/building_top_sit_dusk.jpg
mkOpt path ../wallpapers/scenic-landscape-blurred.jpg
"Specify the path of your prefered Gnome wallpaper.";
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View file

@ -20,6 +20,7 @@ in
services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true;
# Exclude various Gnome core applications
environment.gnome.excludePackages = with pkgs; [
gnome-tour
gedit
@ -43,7 +44,7 @@ in
environment.systemPackages = with pkgs; [
refine
showtime
resources
mission-center
];
};
}