activate home manager
This commit is contained in:
parent
a4b72beaaf
commit
7d9618c5a0
4 changed files with 10 additions and 2 deletions
26
home/default.nix
Normal file
26
home/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# 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;
|
||||
programs.home-manager.enable = 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
|
||||
};
|
||||
}
|
||||
|
||||
17
home/path.nix
Normal file
17
home/path.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
pkgs: with pkgs; [
|
||||
calc
|
||||
discord
|
||||
file
|
||||
firefox
|
||||
jetbrains.pycharm-professional
|
||||
jq
|
||||
pipenv
|
||||
signal-desktop
|
||||
tdesktop
|
||||
units
|
||||
unzip
|
||||
vlc
|
||||
xournalpp
|
||||
zip
|
||||
zoom-us
|
||||
]
|
||||
Reference in a new issue