Skip to content

Commit

Permalink
feat: setup gnome settings
Browse files Browse the repository at this point in the history
Signed-off-by: Reputable2722 <[email protected]>
  • Loading branch information
Reputable2772 committed Sep 30, 2024
1 parent 207a727 commit 457b083
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1,019 deletions.
24 changes: 20 additions & 4 deletions Users/WickedWizard/Programs/Desktop/Gnome/gnome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,30 @@ in
dconf-editor
] ++ lib.optionals cond (with pkgs.gnomeExtensions; [
appindicator
bluetooth-battery
caffeine
just-perfection

# Can stay non-declarative, since all bluetooth devices configuration is non-declarative anyway.
bluetooth-battery
# Can be used once oae/gnome-shell-pano#271 is closed.
pano
rounded-window-corners
vitals
]);

dconf.settings = {
"org/gnome/shell" = {
disabled-extensions = [ "[email protected]" "[email protected]" "[email protected]" "[email protected]" "native-window-placement@gnome-shell-extensions.gcampax.github.com" "just-perfection-desktop@just-perfection" "[email protected]" "[email protected]" ];
enabled-extensions = [ "[email protected]" "[email protected]" "[email protected]" "[email protected]" "[email protected]" "screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com" "[email protected]" "[email protected]" ];
favorite-apps = [ "librewolf.desktop" "firefox.desktop" "org.codeberg.dnkl.foot.desktop" "@joplinapp-desktop.desktop" ];
};

"org/gnome/shell/extensions/caffeine" = {
indicator-position-max = 3;
};

"org/gnome/shell/extensions/system-monitor" = {
show-swap = false;
};
};

# Fixes NixOS/nixpkgs#53631
home.sessionVariables = lib.optionalAttrs cond {
GST_PLUGIN_SYSTEM_PATH_1_0 = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0"
Expand Down
Loading

0 comments on commit 457b083

Please sign in to comment.