Gnome : Disable Software.
This commit is contained in:
parent
8fae2e51fd
commit
5f5167afc9
|
@ -55,3 +55,6 @@ trim_trailing_whitespace = true
|
||||||
" > .editorconfig
|
" > .editorconfig
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function bootstrap_flathub() {
|
||||||
|
flatpak remote-add flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||||
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Reference in a new issue