blob: e6b45dbc4ca7c2d71a9f7f36e2be112497863d7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{ config
, pkgs
, unstablePkgs
, unfreePkgs
, unstableUnfreePkgs
, userOptions
, lib
, nixgl
, ...
}:
{
imports = [
../../modules/base.nix
];
home.sessionPath = [
"${userOptions.userHome}/.local/share/coursier/bin"
];
home.packages = [
pkgs.nixgl.nixGLIntel
];
programs.alacritty.settings.font.size = lib.mkForce 8;
services.gpg-agent.pinentry.package = pkgs.pinentry-curses;
}
|