Budgie Desktop: Difference between revisions

From NixOS Wiki
imported>FedericoSchonborn
Added categories
imported>Davitgog
gnome.excludePackages does not work on budgie
 
Line 16: Line 16:


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
environment.gnome.excludePackages = with pkgs; [
environment.budgie.excludePackages = with pkgs; [
   mate.mate-terminal
   mate.mate-terminal
   vlc
   vlc

Latest revision as of 18:23, 22 July 2023

The Budgie Desktop is a feature-rich, modern desktop designed to keep out the way of the user.

Installing Budgie Desktop

To use the Budgie Desktop, add this to your configuration.nix:

services.xserver.enable = true;
services.xserver.desktopManager.budgie.enable = true;
services.xserver.displayManager.lightdm.enable = true;

Excluding some Budgie Desktop applications from the default install

Not all applications that come pre-installed with the Budgie Desktop are desirable for everyone to have on their machines. There's a way to edit configuration.nix to exclude these kinds of packages, for example as follows:

environment.budgie.excludePackages = with pkgs; [
  mate.mate-terminal
  vlc
];