{ config, lib, pkgs, home-manager, ... }: { # Load the home-manager i3 module imports = [ ]; # Then configure it libkookie.ui.i3 = { picom = true; # TODO: include these files via git LFS wallpaper = /home/Pictures/Wallpapers/small-memory.webp; # TODO: hook into the "fonts" module? fonts = [ "Iosevka:12" ]; term = pkgs.kitty; i3Status.segments = ["ipv6" "disk /" "ethernet _first_" "load" "tztime local"]; }; home.packages = with pkgs; [ iosevka ]; }