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

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