Last active
April 10, 2025 02:42
-
-
Save kdaisho/ceaae05ef3b9661fe32ac1a5e83aedad to your computer and use it in GitHub Desktop.
home.nix (Ubuntu)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, pkgs, ... }: | |
{ | |
home.username = "kali"; | |
home.homeDirectory = "/home/kali"; | |
home.stateVersion = "24.11"; | |
home.packages = [ | |
pkgs.deno | |
pkgs.nodejs_22 | |
pkgs.git | |
pkgs.htop | |
pkgs.ghc | |
pkgs.haskellPackages.haskeline_0_8_2_1 | |
pkgs.autojump | |
pkgs.gobuster | |
pkgs.tor-browser | |
pkgs.mdk4 | |
pkgs.busybox | |
]; | |
programs = { | |
neovim = { | |
enable = true; | |
viAlias = true; | |
vimAlias = true; | |
extraConfig = '' | |
syntax on | |
set number | |
set smartindent | |
set autoindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set completeopt=menuone,noinsert,noselect | |
colorscheme murphy | |
''; | |
}; | |
home-manager.enable = true; | |
zsh = { | |
enable = true; | |
autosuggestion.enable = true; | |
oh-my-zsh = { | |
enable = true; | |
plugins = [ "git" "autojump" ]; | |
theme = "robbyrussell"; | |
}; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment