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

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

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