My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/configuration/workstation/i3/tempest.nix

22 lines
531 B

{ config, lib, pkgs, home-manager, ... }:
{
# Load the home-manager i3 module
imports = [ <modules/workstation/ui/i3/hm.nix> ];
# 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:13" ];
term = pkgs.kitty;
i3Status.segments = ["ipv6" "disk" "ethernet _first_" "load" "tztime local"];
};
home.packages = with pkgs; [ iosevka ];
}