nixos/home/gnome/impl/home.nix

20 lines
346 B
Nix
Raw Normal View History

{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.passthrough.gnome;
in mkIf cfg.enable {
home.packages =
2024-07-29 15:40:59 +08:00
with pkgs.gnome;
with pkgs.gnomeExtensions; [
# gnomeExtensions
dash-to-panel
dash-to-dock
appindicator
];
2024-07-29 19:56:16 +08:00
catppuccin.enable = mkForce false;
home.pointerCursor = mkForce null;
gtk.enable = false;
}