aboutsummaryrefslogtreecommitdiff
path: root/user/wm/default.nix
blob: e735011df03f2e13f9e0e849592daceaea06f10c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:
{
  imports = [
    ./foot.nix
    ./librewolf.nix
    ./niri
  ];

  fonts.fontconfig.enable = true;
  home.packages = with pkgs; [
    fira-code
  ];
}