nixos/home/gnome/impl/home.nix

19 lines
286 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; [
# gnome
2024-07-29 15:40:59 +08:00
pkgs.gnome-terminal
# gnomeExtensions
dash-to-panel
dash-to-dock
appindicator
];
}