aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/configuration/workstation/i3/tempest.nix
blob: fd1047f962c396e8b99532074d50605ab595f3e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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:12" ];

    term = pkgs.kitty;
    i3Status.segments = ["ipv6" "disk /" "ethernet _first_" "load" "tztime local"];
  };

  home.packages = with pkgs; [ iosevka ];
}