summaryrefslogblamecommitdiff
path: root/nixpkgs/home.nix
blob: ae8bc5da32af1d90ae7afe1b1b1db5fc042138fd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                




                                  



                                                 
    


                                 
                                          
    


                                                   
                                                                 
    




                                           
                                                                       
 




















                                    
{ pkgs, ... }: {
  home.username = "lx";
  home.homeDirectory = "/home/lx";

  programs.bash = {
    enable = true;
    shellAliases = {
      ll = "ls -lah";
      irc = "ssh -t adnab.me /usr/local/bin/irc";
    };
  };
  programs.keychain = {
    enable = true;
    enableBashIntegration = true;
    keys = [ "/home/lx/.ssh/id_ed25519" ];
  };
  programs.vim = {
    enable = true;
    extraConfig = (builtins.readFile ../vim/vimrc);
    plugins = with pkgs.vimPlugins; [ vim-nix fzf-vim nerdtree ];
  };

  programs.git.enable = true;
  programs.git.userName = "Alex Auvolat";
  programs.git.userEmail = "alex@adnab.me";

  home.file = { ".config/tmux/tmux.conf".source = ../tmux/tmux.conf; };

  xsession.enable = true;

  xdg.enable = true;
  xdg.userDirs = {
    download = "/home/lx/Downloads";
    desktop = null;
    documents = null;
    pictures = null;
    music = null;
    publicShare = null;
    templates = null;
    videos = null;
  };

  services.syncthing.enable = true;

  nixpkgs.config.allowUnfree = true;

  home.stateVersion = "22.11";
}