From 5f5167afc9d5a21bbf4f3a0c1bfcbc17659440bc Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Thu, 25 Jan 2024 00:49:29 +0300 Subject: [PATCH] Gnome : Disable Software. --- .config/bash/module/Bootstrap.sh | 3 +++ .config/linux/nix/Gnome.nix | 7 ++++++- 2 files changed, 9 insertions(+), 1 deletion(-) 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;