aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/configuration/workstation/i3/uwu.nix
blob: 2d0c28395361e8436f5fa7f99def5509f45bf48a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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/wallpaper/guidestone.jpg;

    # TODO: hook into the "fonts" module?
    fonts = [ "Iosevka Kookie:10" ];

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

  # ??? Why is this required
  home.packages = [ pkgs.iosevka ];
}