aboutsummaryrefslogtreecommitdiff
path: root/modules/user/default.nix
blob: c205c0326918be7a226652c37538cddeaa635fd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:
{
  imports = [
    ./desktop
    ./editors
    ./git.nix
    ./zsh
  ];

  home.packages = with pkgs; [
    fira-code
  ];
}