Move file into directory

This commit is contained in:
Alexander Wainwright 2025-06-20 22:14:36 +10:00
parent e151041859
commit 61946b33a6
2 changed files with 2 additions and 2 deletions

179
alex/home.nix Normal file
View file

@ -0,0 +1,179 @@
{ config, pkgs, ... }:
{
home.username = "alex";
home.homeDirectory = "/home/alex";
# link the configuration file in current directory to the specified location in home directory
# home.file.".config/i3/wallpaper.jpg".source = ./wallpaper.jpg;
# link all files in `./scripts` to `~/.config/i3/scripts`
# home.file.".config/i3/scripts" = {
# source = ./scripts;
# recursive = true; # link recursively
# executable = true; # make all files executable
# };
# encode the file content in nix configuration file directly
# home.file.".xxx".text = ''
# xxx
# '';
home.shellAliases = {
e = "ls -lh";
tree = "eza --tree";
l = "ls";
ll = "eza -l";
clip = "xclip -selection clipboard";
vi = "nvim";
vim = "nvim";
mtr = "mtr -t";
tm = "tmux attach || tmux";
};
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
# here is some command line tools I use frequently
# feel free to add your own or remove some of them
neofetch
nnn # terminal file manager
# archives
zip
xz
unzip
# p7zip
# utils
ripgrep # recursively searches directories for a regex pattern
bat
jq # A lightweight and flexible command-line JSON processor
# yq-go # yaml processor https://github.com/mikefarah/yq
eza # A modern replacement for ls
fzf # A command-line fuzzy finder
fd
xclip
# networking tools
mtr # A network diagnostic tool
# iperf3
# dnsutils # `dig` + `nslookup`
# ldns # replacement of `dig`, it provide the command `drill`
# aria2 # A lightweight multi-protocol & multi-source command-line download utility
# socat # replacement of openbsd-netcat
# nmap # A utility for network discovery and security auditing
# ipcalc # it is a calculator for the IPv4/v6 addresses
# misc
cowsay
file
which
tree
# gnused
# gnutar
# gawk
# zstd
gnupg
# nix related
#
# it provides the command `nom` works just like `nix`
# with more details log output
nix-output-monitor
# # productivity
# hugo # static site generator
# glow # markdown previewer in terminal
btop # replacement of htop/nmon
iotop # io monitoring
iftop # network monitoring
# system call monitoring
strace # system call monitoring
ltrace # library call monitoring
lsof # list open files
# system tools
# sysstat
lm_sensors # for `sensors` command
ethtool
pciutils # lspci
usbutils # lsusb
zoxide
];
# basic configuration of git, please change to your own
programs.git = {
enable = true;
userName = "Alexander Wainwright";
userEmail = "code@figtree.dev";
};
# starship - an customizable prompt for any shell
programs.starship = {
enable = true;
# custom settings
settings = {
add_newline = false;
aws.disabled = true;
gcloud.disabled = true;
line_break.disabled = true;
};
};
programs.fish = {
enable = true;
interactiveShellInit = ''
set PATH ~/.cargo/bin $PATH
set PATH ~/scripts $PATH
set PATH ~/.local/bin $PATH
set fish_prompt_pwd_dir_length 0
set fish_greeting
# eza colours
set -x EZA_COLORS "di=0:oc=0:ur=0:uw=0:ux=0:ue=0:gr=0:gw=0:gx=0:tr=0:tw=0:tx=0:su=0:sf=0"
# enable atuin if available
if command -q atuin
atuin init fish | source
else
echo "Warning: Atuin is not installed, skipping initialisation."
end
starship init fish | source
zoxide init fish | source
'';
functions.borg-h = ''
borg help $argv | less
'';
};
programs.bash = {
enable = true;
enableCompletion = true;
# TODO add your custom bashrc here
bashrcExtra = ''
export PATH="$PATH:$HOME/bin:$HOME/.local/bin:$HOME/go/bin"
'';
};
programs.neovim = {
enable = true;
defaultEditor = true;
};
# This value determines the home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new home Manager release introduces backwards
# incompatible changes.
#
# You can update home Manager without changing this value. See
# the home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "25.05";
}