aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/configuration/workstation/i3/tempest.nix
blob: 23717d813ed56e92d824f4ea15a0fecebacf7c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, pkgs, home-manager, ... }:

{
  # Load the home-manager i3 module
  imports = [ <modules/workstation/ui/i3/hm.nix> ];

  # Then configure it
  libkookie.ui.i3 = {
    fonts = [ "Iosevka:13" ];
  };

  # FIXME: make this be included automatically
  home.packages = with pkgs; [ iosevka ];
}