summaryrefslogtreecommitdiff
path: root/nixpkgs/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/home.nix')
-rw-r--r--nixpkgs/home.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/nixpkgs/home.nix b/nixpkgs/home.nix
new file mode 100644
index 0000000..ae8bc5d
--- /dev/null
+++ b/nixpkgs/home.nix
@@ -0,0 +1,49 @@
+{ 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";
+}
+