blob: 4b9c6f786e42169b7e32b53713d8183e798c3467 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ config, pkgs, ... }:
{
imports = [
./desktop
./editors
./git.nix
./zsh
];
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
brightnessctl
keepassxc
];
}
|