Add i3 module
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 16:46:57 +0200
3 files changed, 28 insertions(+), 0 deletions(-)
A modules/i3.nix
@@ -0,0 +1,12 @@+{ config, pkgs, ... }: + +{ services.xserver.windowManager.i3 = { + enable = true; + package = pkgs.i3-gaps; + }; + + environment.systemPackages = with pkgs; [ + i3status + i3lock-color + ]; +}
A modules/window-manager.nix
@@ -0,0 +1,15 @@+{ config, pkgs, ... }: + +{ services.xserver.displayManager = { + slim = { + enable = true; + }; + }; + + environment.systemPackages = with pkgs; [ + dmenu + dunst + sxhkd + scrot + ]; +}
M satoshipad.nix → satoshipad.nix
@@ -30,6 +30,7 @@ ./modules/accounting.nix ./modules/passwords.nix ./modules/network-manager.nix ./modules/nix.nix + ./modules/i3.nix ]; boot.initrd.luks.devices = [