nixos/home/gnome/impl/home.nix

26 lines
419 B
Nix
Raw Normal View History

{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.passthrough.gnome;
in mkIf cfg.enable {
home.packages =
with pkgs;
with gnome;
with gnomeExtensions; [
# gtk3 theme
adw-gtk3
# gnomeExtensions
2024-08-15 20:50:14 +08:00
caffeine
dash-to-panel
dash-to-dock
appindicator
2024-08-15 20:50:14 +08:00
privacy-settings-menu
];
2024-07-29 19:56:16 +08:00
catppuccin.enable = mkForce false;
home.pointerCursor = mkForce null;
gtk.enable = false;
}