diff --git a/.config/bash/module/Bootstrap.sh b/.config/bash/module/Bootstrap.sh index f916ad9..8667617 100644 --- a/.config/bash/module/Bootstrap.sh +++ b/.config/bash/module/Bootstrap.sh @@ -55,3 +55,6 @@ trim_trailing_whitespace = true " > .editorconfig } +function bootstrap_flathub() { + flatpak remote-add flathub https://dl.flathub.org/repo/flathub.flatpakrepo +} diff --git a/.config/linux/nix/Gnome.nix b/.config/linux/nix/Gnome.nix index 59e11ce..03607bf 100644 --- a/.config/linux/nix/Gnome.nix +++ b/.config/linux/nix/Gnome.nix @@ -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;