mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
21 lines
368 B
Nix
21 lines
368 B
Nix
{ config, options, lib, pkgs, ... }:
|
|
|
|
{
|
|
fonts.fontconfig.enable = true;
|
|
|
|
# My specific usual stuff.
|
|
programs.git = {
|
|
enable = true;
|
|
lfs.enable = true;
|
|
userName = "foo-dogsquared";
|
|
userEmail = "foo.dogsquared@gmail.com";
|
|
};
|
|
|
|
# My custom modules.
|
|
modules = {
|
|
alacritty.enable = true;
|
|
i18n.enable = true;
|
|
dev.enable = true;
|
|
};
|
|
}
|