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