lilyinstarlight / nixos-cosmic

Flake for using COSMIC on NixOS
MIT License
350 stars 25 forks source link

enable GTK theme support #348

Open Thatoo opened 1 week ago

Thatoo commented 1 week ago

To solve this issue, I have been invited to enable GTK theme support.

I wen to Cosmic Settings > Desktop > Appearance > Experimental settings and I toggled "apply this theme to Gnome applications" and then I disconnect my session and reconnect but it didn't enable GTK theme support.

The GTK wifi setting app (down on the picture) isn't customized as it should (it should like the cosmic app, on top of the picture)

image

Apparently, cosmic-settings-daemon is running

:~$ cosmic-settings-daemon --help
Error: NameTaken
Thatoo commented 1 week ago

Based on https://github.com/pop-os/cosmic-epoch/issues/976 and https://github.com/lilyinstarlight/nixos-cosmic/issues/271, I tried to add this in my specialisation.nix file but it didn't solved it.

  specialisation = {
    cosmic.configuration = {
      environment.systemPackages = with pkgs; [
        adw-gtk3
        networkmanagerapplet
        gnome.networkmanager-openvpn
      ];
      system.nixos.tags = [ "Cosmic" ];
    };
  };