nixos/home/gnome/impl/home.nix

33 lines
655 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;
2024-11-26 22:42:49 +08:00
home.persistence."/nix/persist/home/${config.home.username}" = {
removePrefixDirectory = true;
files = [
(if config.specialisation != {} then "gnome/.config/monitors.xml" else "extern/.config/monitors.xml")
];
};
}