alacritty and xmonad-srid fix

This commit is contained in:
Sridhar Ratnakumar 2021-04-09 16:48:42 -04:00
parent 2b456f2eb9
commit ae949fc48b
5 changed files with 12 additions and 11 deletions

View file

@ -12,5 +12,6 @@ in
{
environment.systemPackages = with pkgs; [
myst
alacritty
];
}

View file

@ -1,11 +1,11 @@
{ config, pkgs, ... }:
{
services.xserver.libinput = {
enable = true;
# macOS like behaviour
touchpad.naturalScrolling = true;
# Tap to click
touchpad.tapping = true;
};
services.xserver.libinput = {
enable = true;
# macOS like behaviour
touchpad.naturalScrolling = true;
# Tap to click
touchpad.tapping = true;
};
}

View file

@ -1,5 +1,5 @@
{
"nixEnvSelector.nixShellConfig": "${workspaceRoot}/default.nix",
"editor.formatOnType": true,
"editor.formatOnSave": true
"editor.formatOnSave": true,
"nixEnvSelector.nixFile": "${workspaceRoot}/default.nix"
}

View file

@ -20,7 +20,7 @@ main = do
cfg =
def
{ modMask = mod4Mask, -- Use Super instead of Alt
terminal = "myst",
terminal = "alacritty", -- "myst",
layoutHook =
borderSpacing $
avoidStruts $

View file

@ -12,7 +12,7 @@ in
[ cabal-install
cabal-fmt
ghcid
haskell-language-server
# haskell-language-server
]);
overrides = self: super: with pkgs.haskell.lib; {
# dulwich = dontCheck super.dulwich;