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

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