Gnome : Disable Software.
This commit is contained in:
parent
8fae2e51fd
commit
5f5167afc9
|
@ -55,3 +55,6 @@ trim_trailing_whitespace = true
|
|||
" > .editorconfig
|
||||
}
|
||||
|
||||
function bootstrap_flathub() {
|
||||
flatpak remote-add flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# GUI.
|
||||
|
@ -10,6 +10,11 @@
|
|||
xkbVariant = "";
|
||||
};
|
||||
|
||||
# Disable some apps.
|
||||
environment.gnome.excludePackages = with pkgs.gnome; [
|
||||
gnome-software
|
||||
];
|
||||
|
||||
# Sound.
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
|
|
Reference in a new issue