summaryrefslogtreecommitdiff
path: root/modules/gnome-config.nix
diff options
context:
space:
mode:
authorLeonardo Santiago <[email protected]>2024-09-12 21:44:46 -0300
committerLeonardo Santiago <[email protected]>2024-09-12 23:20:51 -0300
commit62100c9265a4de389d1ea8060cbddddacde161a7 (patch)
tree811ca1c5803ccdb2670f0c239214bc0dc30f57c7 /modules/gnome-config.nix
parentf9ddec7952709d7b5d5d79deadca07c573510d49 (diff)
split users/leonardo.nix into modules with options
in order to be able to deploy just a few of those to iori.nix
Diffstat (limited to 'modules/gnome-config.nix')
-rw-r--r--modules/gnome-config.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/modules/gnome-config.nix b/modules/gnome-config.nix
deleted file mode 100644
index 38a812d..0000000
--- a/modules/gnome-config.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ ... }:
-{
- dconf.settings = {
- "org/gnome/desktop/background" = {
- picture-uri = "${../wallpaper.png}";
- picture-uri-dark = "${../wallpaper.png}";
- picture-options = "zoom";
- };
- "org/gnome/desktop/interface" = {
- color-scheme="prefer-dark";
- enable-hot-corners=false;
- font-antialiasing="grayscale";
- font-hinting="slight";
- gtk-theme="Graphite-Dark";
- icon-theme="Tela-brown-light";
- show-battery-percentage=true;
- };
- "org/gnome/desktop/peripherals/touchpad" = {
- edge-scrolling-enabled=false;
- natural-scroll=true;
- tap-to-click=true;
- two-finger-scrolling-enabled=true;
- };
- "org/gnome/mutter" = {
- dynamic-workspaces= true;
- edge-tiling= true;
- workspaces-only-on-primary= true;
- };
- "org/gnome/settings-daemon/plugins/power" = {
- power-button-action="hibernate";
- sleep-inactive-ac-type="nothing";
- };
- # ========= GNOME SHELL ============
- "org/gnome/shell" = {
- enabled-extensions = [
- ];
- disabled-extensions= [
- ];
- };
- "org/gnome/shell/extensions/user-theme".name = "Graphite-Dark";
- "org/honem/shell/extensions/vitals" = {
- hide-zeros = true;
- position-in-panel = "0";
- show-battery = false;
- show-temperature = true;
- };
- "org/gnome/shell/app-switcher".current-workspace-only = true;
- };
-}