summaryrefslogtreecommitdiff
path: root/home-manager/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/home.nix')
-rw-r--r--home-manager/home.nix53
1 files changed, 0 insertions, 53 deletions
diff --git a/home-manager/home.nix b/home-manager/home.nix
deleted file mode 100644
index fdaf22d..0000000
--- a/home-manager/home.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-{ config, pkgs, ... }:
-
-{
- home.username = "ozpv";
- home.homeDirectory = "/home/ozpv";
- home.stateVersion = "23.11"; # Please read the comment before changing.
-
- home.packages = with pkgs; [
- neofetch
- ];
-
- home.sessionVariables = {
- EDITOR = "vim";
- };
-
- programs.home-manager.enable = true;
-
- programs.zsh = {
- enable = true;
- shellAliases = {
- cp = "cp -v";
- mv = "mv -v";
- rm = "rm -v";
- mkdir = "mkdir -v -p";
- rmdir = "rmdir -v";
- ls = "ls -hla --color=auto";
- grep = "grep --color=auto";
- vim-basic = "vim";
- vim = "nvim";
- };
-
- plugins = [
- {
- name = "zsh-autosuggestions";
- src = pkgs.fetchFromGitHub {
- owner = "zsh-users";
- repo = "zsh-autosuggestions";
- rev = "v0.8.0";
- sha256 = lib.fakeSha256;
- };
- }
- {
- name = "zsh-syntax-highlighting";
- src = pkgs.fetchFromGitHub {
- owner = "zsh-users";
- repo = "zsh-syntax-highlighting";
- rev = "v0.7.0";
- sha256 = lib.fakeSha256;
- };
- }
- ];
- }
-}