aboutsummaryrefslogtreecommitdiff
path: root/home/rices/cosmic/fluxbox.nix
blob: af00a1d580c7e2c15e7b13d1e8e6066f3d122f8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{pkgs, ...}: {
  # Enable cosmix as the DE
  services.desktopManager.cosmic = {
    enable = true;
  };
  # Exclude packages
  environment.cosmic.excludePackages = with pkgs; [
    cosmic-edit
  ];

  # Slightly improve performance by enabling system76's own scheduler
  services.system76-scheduler.enable = true;

  programs.firefox.preferences = {
    # disable libadwaita theming for Firefox
    "widget.gtk.libadwaita-colors.enabled" = false;
  };
}