Commit 7e970fea94a3

Vincent Demeester <vincent@sbr.pm>
2021-10-21 10:12:54
users/vincent: configure i3 gaps…
… and fix dconf error Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 271dd24
Changed files (2)
systems
modules
profiles
users
vincent
desktop
systems/modules/profiles/i3.nix
@@ -32,5 +32,6 @@ in
         packages = [ pkgs.gnome3.dconf ];
       };
     };
+    programs.dconf.enable = true;
   };
 }
users/vincent/desktop/i3.nix
@@ -23,7 +23,7 @@ in
   imports = [
     ./alacritty.nix
     ./autorandr.nix
-    ./dconf.nix
+    # ./dconf.nix
     ./xsession.nix
   ];
   home.sessionVariables = { WEBKIT_DISABLE_COMPOSITING_MODE = 1; };
@@ -36,12 +36,11 @@ in
     maim
     slop
     # Gnome3 relica
-    gnome3.dconf-editor
+    # gnome3.dconf-editor
     # FIXME move this elsewhere
     pop-gtk-theme
     pop-icon-theme
     pinentry-gnome
-    # tilix
 
     aspell
     aspellDicts.en
@@ -101,6 +100,14 @@ in
       background-color: #2e343f;
     }
   '';
+  programs.kitty = {
+    enable = true;
+    settings = {
+      term = "xterm-256color";
+      close_on_child_death = "yes";
+      font_family = "Ubuntu Mono";
+    };
+  };
   programs.rofi = {
     enable = true;
     package = pkgs.rofi.override { plugins = [ pkgs.rofi-emoji pkgs.rofi-menugen pkgs.rofi-mpd ]; };
@@ -198,8 +205,8 @@ in
         "Mod4+Control+Shift+Return" = "exec ${emacs-in-folder}";
       };
       gaps = {
-        inner = 0;
-        outer = 0;
+        inner = 1;
+        outer = 1;
       };
       keycodebindings = {
         "Mod4+Shift+24" = "kill";