Budgie Desktop: Difference between revisions
imported>FedericoSchonborn Created page with "The [https://github.com/BuddiesOfBudgie/budgie-desktop Budgie Desktop] is a feature-rich, modern desktop designed to keep out the way of the user. == Installing Budgie Deskto..." |
imported>Davitgog gnome.excludePackages does not work on budgie |
||
(One intermediate revision by one other user not shown) | |||
Line 16: | Line 16: | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
environment. | environment.budgie.excludePackages = with pkgs; [ | ||
mate.mate-terminal | mate.mate-terminal | ||
vlc | vlc | ||
]; | ]; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Desktop environment]] | |||
[[Category:Applications]] |
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
];