all repos — nixfiles @ bfecab269ec49fd9ce07812211f95fafab5e11e8

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

Add i3 module

Alan Pearce
commit

bfecab269ec49fd9ce07812211f95fafab5e11e8

parent

3e054571d73ccacfec7b1d4714bfa74818b7affe

1 file changed, 12 insertions(+), 0 deletions(-)

changed files
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 + ]; +}