mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 14:23:55 -05:00
Aly Raffauf
7798d01cae
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* firefox: add gnome browser connector * lavaridge: remove commented gnome settings * nixos: add gnome module * nix fmt * vscode: use custom titlebar on gnome * theme: check for gnome before adding extraCss * firefox: browsers in titlebar when gnome is enabled * home: add gnome settings * desktop: set gtk window decorations * gnome: remove gsconnect * Merge branch 'master' into add-gnome
66 lines
2 KiB
Nix
66 lines
2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.desktop.gnome.enable {
|
|
dconf = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
"org/gnome/desktop/datetime".automatic-timezone = true;
|
|
|
|
"org/gnome/desktop/interface" = {
|
|
clock-format = "12h";
|
|
enable-hot-corners = true;
|
|
};
|
|
|
|
"org/gnome/desktop/peripherals/touchpad".tap-to-click = true;
|
|
"org/gnome/desktop/search-providers".enabled = "['org.gnome.Calendar.desktop', 'org.gnome.Weather.desktop', 'org.gnome.Contacts.desktop', 'org.gnome.Calculator.desktop', 'org.gnome.Characters.desktop', 'org.gnome.clocks.desktop']";
|
|
"org/gnome/desktop/wm/preferences".auto-raise = true;
|
|
|
|
"org/gnome/mutter" = {
|
|
dynamic-workspaces = true;
|
|
edge-tiling = true;
|
|
workspaces-only-on-primary = true;
|
|
};
|
|
|
|
"org/gnome/shell".enabled-extensions = [
|
|
"appindicatorsupport@rgcjonas.gmail.com"
|
|
"blur-my-shell@aunetx"
|
|
"noannoyance-fork@vrba.dev"
|
|
"tailscale-status@maxgallup.github.com"
|
|
"tiling-assistant@leleat-on-github"
|
|
"drive-menu@gnome-shell-extensions.gcampax.github.com"
|
|
];
|
|
|
|
"org/gnome/shell/extensions/blur-my-shell/overview".style-components = 3;
|
|
|
|
"org/gnome/shell/extensions/blur-my-shell/panel" = {
|
|
blur = false;
|
|
customize = true;
|
|
override-background = false;
|
|
override-background-dynamically = false;
|
|
style-panel = 0;
|
|
unblur-in-overview = true;
|
|
};
|
|
|
|
"org/gnome/system/location".enabled = true;
|
|
};
|
|
};
|
|
|
|
programs.gnome-shell = {
|
|
enable = true;
|
|
|
|
extensions = [
|
|
{package = pkgs.gnomeExtensions.appindicator;}
|
|
{package = pkgs.gnomeExtensions.blur-my-shell;}
|
|
{package = pkgs.gnomeExtensions.noannoyance-fork;}
|
|
{package = pkgs.gnomeExtensions.tailscale-status;}
|
|
{package = pkgs.gnomeExtensions.tiling-assistant;}
|
|
];
|
|
};
|
|
};
|
|
}
|