25 lines
545 B
Nix
25 lines
545 B
Nix
# 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;
|
|
|
|
# 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
|
|
};
|
|
}
|
|
|