mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
3a022a374a
I think this is better for separating modules explicitly. This is also considered as there are similar objects between modules (e.g., NixOS and home-manager modules and users). Revert users module to old position
28 lines
484 B
Nix
28 lines
484 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 = {
|
|
i18n.enable = true;
|
|
dev = {
|
|
enable = true;
|
|
shell.enable = true;
|
|
};
|
|
desktop = {
|
|
enable = true;
|
|
graphics.enable = true;
|
|
audio.enable = true;
|
|
};
|
|
};
|
|
}
|