aboutsummaryrefslogtreecommitdiff
path: root/modules/user/default.nix
blob: 7c0d274a8247415f5cb89dada5096e6fd6f2f407 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  config,
  lib,
  pkgs,
  ...
}:
{
  imports = [
    ./desktop
    ./editors
    ./git.nix
    ./ssh.nix
    ./zsh
  ];

  fonts.fontconfig.enable = true;
  home.packages = with pkgs; [
    brightnessctl
    keepassxc
  ];

  services.ssh-agent.enable = lib.mkDefault true;
}