15 lines
237 B
Nix
15 lines
237 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
fonts.fontconfig.enable = true;
|
|
|
|
home.packages = with pkgs; [
|
|
gcc
|
|
vrrtest
|
|
websocat
|
|
roboto
|
|
fira-code
|
|
pciutils
|
|
libnotify
|
|
(nerdfonts.override { fonts = [ "RobotoMono" ]; })
|
|
];
|
|
} |