fix(gnome): disable theme

This commit is contained in:
514fpv 2024-07-29 19:56:16 +08:00
parent e9bf8b292f
commit 94bf2f9847
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
3 changed files with 55 additions and 18 deletions

View file

@ -5,6 +5,8 @@
cfg = config.home.gnome;
in mkIf cfg.enable {
global.flatpak.enable = mkDefault true;
home.catppuccin.enable = mkDefault false;
catppuccin.enable = false;
programs.regreet.enable = false;
services.xserver.enable = true;
services.xserver.displayManager.startx.enable = false;
@ -14,8 +16,13 @@ in mkIf cfg.enable {
xdg.portal.configPackages = with pkgs; [ gnome.gnome-session ];
hardware.pulseaudio.enable = false;
users.home.persist.directories = [
".config/dconf"
];
environment.gnome.excludePackages = (with pkgs; [
gnome-tour
] ++ optionals config.global.flatpak.enable [
gnome-calculator
]) ++ (with pkgs.gnome; [ ] ++ optionals config.global.flatpak.enable [
]);
users.home.persist.directories = [ ".config/dconf" ];
environment.persistence."/nix/persist/fhs".directories = [ ];
}