Initial commit

It begins...
This commit is contained in:
Griffin Smith 2020-03-27 23:32:13 -04:00
commit 28ccec9704
24 changed files with 2721 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
# Enable the X11 windowing system.
services.xserver = {
enable = true;
layout = "us";
xkbOptions = "caps:swapescape";
libinput.enable = true;
windowManager.i3 = {
enable = true;
extraPackages = with pkgs; [
i3status
i3lock
];
};
};
}