system: Always exclude gnome-tour

Should prevent gnome-tour from showing in phosh.
This commit is contained in:
Donovan Glover 2024-06-23 09:46:55 -04:00
parent 83740051ea
commit 8bfc0ebf36
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 9 additions and 7 deletions

View File

@ -252,12 +252,16 @@ in
}; };
}; };
environment.systemPackages = with pkgs; [ environment = {
(pass.withExtensions (ext: with ext; [ pass-otp ])) systemPackages = with pkgs; [
]; (pass.withExtensions (ext: with ext; [ pass-otp ]))
];
defaultPackages = [ ];
gnome.excludePackages = with pkgs; [ gnome-tour ];
};
programs.command-not-found.enable = false; programs.command-not-found.enable = false;
environment.defaultPackages = [ ];
}; };
} }

View File

@ -30,8 +30,6 @@ in
ibus.engines = with pkgs.ibus-engines; [ mozc ]; ibus.engines = with pkgs.ibus-engines; [ mozc ];
}; };
environment.gnome.excludePackages = [ pkgs.gnome-tour ];
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;
programs.hyprland.enable = lib.mkForce false; programs.hyprland.enable = lib.mkForce false;
services.greetd.enable = lib.mkForce false; services.greetd.enable = lib.mkForce false;