Gnome : Disable Software.

This commit is contained in:
Dmitry Voronin 2024-01-25 00:49:29 +03:00
parent 8fae2e51fd
commit 5f5167afc9
2 changed files with 9 additions and 1 deletions

View file

@ -55,3 +55,6 @@ trim_trailing_whitespace = true
" > .editorconfig " > .editorconfig
} }
function bootstrap_flathub() {
flatpak remote-add flathub https://dl.flathub.org/repo/flathub.flatpakrepo
}

View file

@ -1,4 +1,4 @@
{ ... }: { pkgs, ... }:
{ {
# GUI. # GUI.
@ -10,6 +10,11 @@
xkbVariant = ""; xkbVariant = "";
}; };
# Disable some apps.
environment.gnome.excludePackages = with pkgs.gnome; [
gnome-software
];
# Sound. # Sound.
sound.enable = true; sound.enable = true;
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;