all repos — nixfiles @ 97ae80b5109f6ad75bf9464d166db6860f76d7c0

System and user configuration, managed by nix and home-manager

Add xserver modules
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 15:04:51 +0200
commit

97ae80b5109f6ad75bf9464d166db6860f76d7c0

parent

cf85d19331d519f99ffd8652b6a279acfaa3f9be

3 files changed, 101 insertions(+), 0 deletions(-)

jump to
A modules/trackball.nix
@@ -0,0 +1,13 @@+{ config, pkgs, ... }:
+
+{ services.xserver.config = ''
+    Section "InputClass"
+        Identifier "Trackball (No Acceleration)"
+        MatchIsPointer "yes"
+        MatchIsTouchpad "no"
+        MatchProduct "Trackball"
+        Option "AccelerationProfile" "-1"
+        Option "AccelerationScheme" "none"
+    EndSection
+  '';
+}
A modules/xserver.nix
@@ -0,0 +1,86 @@+{ config, pkgs, ... }:
+
+{ services.xserver = {
+    enable = true;
+    enableCtrlAltBackspace = true;
+    exportConfiguration = true;
+  };
+
+  environment.sessionVariables = {
+    XCURSOR_PATH = [
+      "${config.system.path}/share/icons"
+      "$HOME/.icons"
+      "$HOME/.nix-profile/share/icons/"
+    ];
+  };
+
+  environment.systemPackages = with pkgs; [
+    xorg.xmodmap
+    xorg.xinit
+    xorg.xev
+    xorg.xdpyinfo
+    xclip
+
+    vanilla-dmz
+
+    hicolor_icon_theme
+    adapta-gtk-theme
+    flat-plat
+    paper-gtk-theme
+    paper-icon-theme
+    numix-gtk-theme
+    numix-icon-theme
+
+    gtk-engine-murrine
+    gtk_engines
+  ];
+
+  fonts = {
+    enableFontDir = true;
+    enableDefaultFonts = true;
+    fontconfig = {
+      defaultFonts = {
+        monospace = [ "Roboto Mono" ];
+        sansSerif = [ "Noto Sans" ];
+        serif = [ "Noto Serif" ];
+      };
+      ultimate = {
+        enable = true;
+        # presets:
+        # ultimate1 ultimate2 ultimate3 ultimate4 ultimate5 osx windowsxp
+        preset = "ultimate3";
+      };
+    };
+    fonts = with pkgs; [
+      anonymousPro
+      cantarell_fonts
+      carlito
+      cm_unicode
+      dejavu_fonts
+      fantasque-sans-mono
+      fira
+      fira-code
+      fira-mono
+      font-droid
+      font-awesome-ttf
+      hack-font
+      nerdfonts
+      iosevka
+      liberation_ttf
+      noto-fonts
+      mononoki
+      opensans-ttf
+      paratype-pt-mono
+      paratype-pt-sans
+      paratype-pt-serif
+      roboto
+      roboto-mono
+      source-code-pro
+      source-sans-pro
+      source-serif-pro
+      terminus_font
+      ubuntu_font_family
+      xorg.fontxfree86type1
+    ];
+  };
+}
M satoshipad.nixsatoshipad.nix
@@ -15,6 +15,8 @@ ./modules/shell.nix     ./modules/dotfiles.nix
     ./modules/berlin.nix
     ./modules/colemak.nix
+    ./modules/trackball.nix
+    ./modules/xserver.nix
   ];
 
   networking.hostName = "satoshipad";