Compare commits
2 commits
7528eddfa5
...
a903c3d56a
| Author | SHA1 | Date | |
|---|---|---|---|
| a903c3d56a | |||
| 13e46c789d |
2 changed files with 50 additions and 25 deletions
29
dotfiles/.gitconfig
Normal file
29
dotfiles/.gitconfig
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
[user]
|
||||||
|
email = root@ivnglkv.me
|
||||||
|
name = Ivan Golikov
|
||||||
|
|
||||||
|
[push]
|
||||||
|
default = current
|
||||||
|
|
||||||
|
[diff]
|
||||||
|
external = difft
|
||||||
|
tool = difftastic
|
||||||
|
|
||||||
|
[difftool]
|
||||||
|
prompt = false
|
||||||
|
|
||||||
|
[difftool "difftastic"]
|
||||||
|
cmd = difft "$LOCAL" "$REMOTE"
|
||||||
|
|
||||||
|
[pager]
|
||||||
|
difftool = true
|
||||||
|
|
||||||
|
[credential]
|
||||||
|
helper = cache --timeout=600
|
||||||
|
|
||||||
|
[core]
|
||||||
|
editor = nvim
|
||||||
|
autocrlf = input
|
||||||
|
|
||||||
|
[init]
|
||||||
|
defaultBranch = main
|
||||||
46
home.nix
46
home.nix
|
|
@ -17,31 +17,27 @@
|
||||||
|
|
||||||
# The home.packages option allows you to install Nix packages into your
|
# The home.packages option allows you to install Nix packages into your
|
||||||
# environment.
|
# environment.
|
||||||
home.packages = [
|
home.packages = with pkgs; [
|
||||||
pkgs.obsidian
|
obsidian
|
||||||
pkgs.kitty
|
kitty
|
||||||
pkgs.git
|
git
|
||||||
pkgs.darktable
|
darktable
|
||||||
pkgs.gparted
|
gparted
|
||||||
pkgs.telegram-desktop
|
telegram-desktop
|
||||||
pkgs.keepassxc
|
keepassxc
|
||||||
pkgs.libreoffice
|
libreoffice
|
||||||
pkgs.ungoogled-chromium
|
ungoogled-chromium
|
||||||
pkgs.difftastic
|
difftastic
|
||||||
pkgs.uv
|
uv
|
||||||
pkgs.lazygit
|
lazygit
|
||||||
pkgs.zoxide
|
zoxide
|
||||||
pkgs.qmk
|
qmk
|
||||||
pkgs.dos2unix
|
dos2unix
|
||||||
pkgs.gnumake
|
gnumake
|
||||||
pkgs.ripgrep
|
ripgrep
|
||||||
pkgs.github-copilot-cli
|
github-copilot-cli
|
||||||
pkgs.nerd-fonts.iosevka-term
|
nerd-fonts.iosevka-term
|
||||||
pkgs.fzf
|
fzf
|
||||||
# # Adds the 'hello' command to your environment. It prints a friendly
|
|
||||||
# # "Hello, world!" when run.
|
|
||||||
# pkgs.hello
|
|
||||||
|
|
||||||
# # It is sometimes useful to fine-tune packages, for example, by applying
|
# # It is sometimes useful to fine-tune packages, for example, by applying
|
||||||
# # overrides. You can do that directly here, just don't forget the
|
# # overrides. You can do that directly here, just don't forget the
|
||||||
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue