17 lines
304 B
Nix
17 lines
304 B
Nix
{ lib, config, pkgs, ... }: {
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
fonts.fontconfig.enable = true;
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
git = {
|
|
enable = true;
|
|
userName = "Random936";
|
|
userEmail = "randomdude936@gmail.com";
|
|
};
|
|
};
|
|
|
|
home.stateVersion = "24.05";
|
|
}
|