Nixpkgs update Nix-Bitcoin update Configuration.nix

This commit is contained in:
2024-08-26 16:48:18 -07:00
parent 53abee0a58
commit e0342ef5c0
3 changed files with 20 additions and 43 deletions

View File

@ -121,29 +121,6 @@ in
systemd.services."getty@tty1".enable = true;
systemd.services."autovt@tty1".enable = true;
# Fix the GNOME Desktop Environment Performance
nixpkgs.config.allowAliases = false;
nixpkgs.overlays = [
# GNOME 46: triple-buffering-v4-46
(final: prev: {
gnome = prev.gnome.overrideScope (gnomeFinal: gnomePrev: {
mutter = gnomePrev.mutter.overrideAttrs (old: {
src = pkgs.fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "vanvugt";
repo = "mutter";
rev = "triple-buffering-v4-46";
hash = "sha256-C2VfW3ThPEZ37YkX7ejlyumLnWa9oij333d5c4yfZxc=";
};
});
});
})
];
# Allow Flatpak
services.flatpak.enable = true;
@ -323,6 +300,7 @@ in
services.mysql = {
enable = true;
package = pkgs.mariadb;
};