t14_legacy_config/home/default.nix

27 lines
585 B
Nix
Raw Normal View History

2022-03-17 09:00:17 +01:00
# man page: https://rycee.gitlab.io/home-manager/options.html
{ config, pkgs, lib, ... }:
{
home = {
stateVersion = "21.11"; # No tocar esto
username = "fabian";
homeDirectory = "/home/fabian";
packages = import ./path.nix pkgs;
};
nixpkgs.config.allowUnfree = true;
2022-03-17 09:56:03 +01:00
programs.home-manager.enable = true;
2022-03-17 09:00:17 +01:00
# configurable = [ neovim zsh keyboardlayout pulsaudio vscodium i3-gaps dunst rofi ];
programs.git = {
enable = true;
userEmail = "fabian@cluster451.org";
userName = "Fabián Montero";
# signing.key = "" poner mi key luego
};
}