blob: 737f3ff55f322ee86a15b9823d4916bf2b482c49 (
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
./zsh
];
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
fira-code
ipaexfont
keepassxc
];
}
|