aboutsummaryrefslogtreecommitdiff
path: root/modules/user/default.nix
blob: ed7c5b2f44df3d0361ecaa0bf7b00f8102d4cb21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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;
}