dotfiles/home-manager/home.nix

421 lines
9.5 KiB
Nix
Raw Normal View History

2021-05-29 17:58:13 +02:00
{ lib, config, options, pkgs, ... }:
2021-05-23 17:31:52 +02:00
let
2022-04-11 11:38:39 +02:00
y-firefox = pkgs.wrapFirefox pkgs.latest.firefox-bin.unwrapped {
2021-05-23 17:31:52 +02:00
forceWayland = true;
2021-10-06 17:18:46 +02:00
applicationName = "firefox";
2021-05-23 17:31:52 +02:00
};
2022-04-11 15:27:39 +02:00
thefuck-alias = shell:
pkgs.runCommand "thefuck-alias" {
TF_SHELL = shell;
HOME = "/build";
} "${pkgs.thefuck}/bin/thefuck -a > $out";
2021-05-29 18:05:31 +02:00
in {
imports = [ ./arbtt.nix ./desktop.nix ];
2021-05-29 17:58:13 +02:00
nixpkgs = {
config.allowUnfree = true;
inherit (import /home/yorick/dotfiles/config.nix) overlays;
};
home = {
stateVersion = "20.09";
username = "yorick";
homeDirectory = "/home/yorick";
};
2018-04-07 20:04:20 +02:00
programs = {
2021-06-06 15:40:00 +02:00
starship = {
enable = true;
settings.nix_shell.disabled = false;
};
2021-06-06 15:57:47 +02:00
# todo: .aws/config default region
2021-05-23 17:31:52 +02:00
gh = {
enable = true;
2021-11-15 13:34:51 +01:00
settings.aliases.co = "pr checkout";
2021-05-23 17:31:52 +02:00
};
direnv.enable = true;
2018-04-07 20:04:20 +02:00
home-manager = {
enable = true;
2021-05-29 17:58:13 +02:00
path = toString /home/yorick/dotfiles;
2021-05-23 17:31:52 +02:00
};
emacs = {
enable = true;
package = pkgs.emacsPgtkGcc;
2021-05-29 18:05:31 +02:00
extraPackages = _:
let epkgs = pkgs.emacsPackagesFor pkgs.emacsPgtkGcc;
in (with epkgs.melpaPackages; [
reason-mode
evil
counsel
ivy
ivy-hydra
swiper
magit
2022-04-11 12:34:16 +02:00
forge
2021-05-29 18:05:31 +02:00
avy
2021-08-08 17:22:04 +02:00
lsp-mode
(lsp-ui.overrideAttrs (o: {
src = pkgs.fetchFromGitHub {
owner = "emacs-lsp";
repo = "lsp-ui";
rev = "240a7de26400cf8b13312c3f9acf7ce653bdaa8a";
sha256 = "1zscdjlnkx43i4kw2qmlvji23xfpw7n5y4v99ld33205dg905fsy";
};
}))
lsp-haskell
flycheck
lsp-ivy
2021-05-29 18:05:31 +02:00
]) ++ (with epkgs.melpaPackages; [
epkgs.undo-tree
epkgs.notmuch
epkgs.rust-mode
2022-01-13 20:36:30 +01:00
pkgs.emacsPackagesNg.crdt
2021-05-29 18:05:31 +02:00
company
projectile
counsel-projectile
ggtags
use-package
org-bullets
solarized-theme
evil-leader
evil-surround # evil-magit
epkgs.evil-goggles
epkgs.ox-mediawiki
nix-buffer
which-key
git-gutter-fringe
all-the-icons
epkgs.org-cliplink
pandoc-mode
markdown-mode
#interleave
2021-05-29 18:05:31 +02:00
org-ref
haskell-mode
request # intero
weechat
s
elixir-mode
htmlize
linum-relative
terraform-mode
direnv
vue-mode
solarized-theme
2021-08-08 17:22:04 +02:00
nix-mode
2021-05-29 18:05:31 +02:00
]);
2018-04-07 20:04:20 +02:00
};
git = {
2022-01-13 20:36:50 +01:00
#lfs.enable = true;
2018-04-07 20:04:20 +02:00
enable = true;
userName = "Yorick van Pelt";
userEmail = "yorick@yorickvanpelt.nl";
signing.key = "A36E70F9DC014A15";
2021-05-23 17:31:52 +02:00
signing.signByDefault = true;
2018-04-07 20:04:20 +02:00
extraConfig.help.autocorrect = 5;
extraConfig.push.default = "simple";
2021-05-23 17:31:52 +02:00
extraConfig.pull.ff = "only";
2021-05-29 18:05:31 +02:00
extraConfig."includeIf \"gitdir:~/serokell/\"".path =
"~/serokell/.gitconfig";
2022-04-11 12:15:47 +02:00
# ignores = [
# "*.~undo-tree~"
# ];
2018-04-07 20:04:20 +02:00
aliases = {
2021-05-29 18:05:31 +02:00
lg =
"log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative";
2018-04-07 20:04:20 +02:00
st = "status";
remotes = "remote -v";
branches = "branch -a";
tags = "tag";
stashes = "stash list";
unstage = "reset -q HEAD --";
discard = "checkout --";
uncommit = "reset --mixed HEAD~";
2021-05-29 18:05:31 +02:00
graph =
"log --graph -10 --branches --remotes --tags --format=format:'%Cgreen%h %Creset %<(75,trunc)%s (%cN, %cr) %Cred%d' --date-order ";
2018-04-07 20:04:20 +02:00
dad = "!curl https://icanhazdadjoke.com/ && git add";
};
};
2018-04-07 20:20:22 +02:00
ssh = {
enable = true;
compression = true;
serverAliveInterval = 120;
controlMaster = "auto";
2021-05-29 18:32:09 +02:00
matchBlocks = let
lumigod = hostname: {
inherit hostname;
port = 2233;
user = "yorick.van.pelt";
};
lumivpn = {
user = "yorick.van.pelt";
# verified by wireguard key
extraOptions.StrictHostKeyChecking = "no";
};
2022-04-11 15:27:39 +02:00
in rec {
2018-04-07 20:20:22 +02:00
"pub.yori.cc" = {
user = "public";
identityFile = "~/.ssh/id_rsa_pub";
identitiesOnly = true;
};
2021-05-29 18:05:31 +02:00
phassa = {
hostname = "karpenoktem.nl";
port = 33933;
};
athena = {
hostname = "athena.lumi.guide";
user = "yorick.van.pelt";
};
rpibuild3 = {
hostname = "10.110.0.3";
user = "yorick.van.pelt";
port = 4222;
};
2021-10-06 17:18:46 +02:00
rpibuild4 = {
hostname = "rpibuild4.lumi.guide";
user = "yorick.van.pelt";
port = 4222;
};
2021-05-29 18:32:09 +02:00
styx = lumigod "10.110.0.1";
2021-05-29 18:05:31 +02:00
"*.lumi.guide" = { user = "yorick.van.pelt"; };
2021-05-29 18:32:09 +02:00
zeus = lumigod "zeus.lumi.guide";
ponos = lumigod "ponos.lumi.guide";
medusa = lumigod "lumi.guide";
2021-05-23 17:31:52 +02:00
# signs
2021-05-29 18:32:09 +02:00
"10.108.0.*" = lumivpn // { port = 4222; };
"10.109.0.*" = lumivpn;
"10.110.0.*" = lumivpn // { port = 2233; };
"10.111.0.*" = lumivpn;
2022-04-11 15:27:39 +02:00
"192.168.42.*" = { user = "yorick.van.pelt"; };
"karpenoktem.nl" = { user = "root"; };
2022-03-20 15:27:00 +01:00
sankhara = {
user = "infra";
port = 33931;
hostname = "sankhara.karpenoktem.nl";
};
2022-04-11 11:45:58 +02:00
blackadder.hostname = "10.209.0.6";
frumar.hostname = "frumar.local";
pennyworth.hostname = "pennyworth.yori.cc";
smithers.hostname = "10.209.0.8";
2021-05-23 17:31:52 +02:00
# "192.168.178.*" = {
2021-05-29 18:32:09 +02:00
# only if wired
2021-05-23 17:31:52 +02:00
# extraOptions.Compression = "no";
# };
};
extraConfig = ''
Match host "192.168.*.*" exec "ip route get %h | grep -v -q via"
Compression no
Match host "192.168.42.*" exec "ip route get %h | grep -q via"
ProxyJump athena
'';
};
fish = {
enable = true;
shellAliases = {
l = "ls";
ls = "exa";
2021-05-29 18:05:31 +02:00
nr = ''nix repl "<nixpkgs>"'';
2022-04-11 13:37:52 +02:00
"n." = "nix repl .";
2021-05-23 17:31:52 +02:00
nsp = "nix-shell -p";
2022-04-11 13:37:52 +02:00
nsd = "nix show-derivation";
nb = "nix build";
nl = "nix log";
g = "git";
2021-06-06 18:15:35 +02:00
lumi = "pushd ~/engineering/lumi; cached-nix-shell; popd";
2022-04-11 13:37:52 +02:00
bc = "bluetoothctl connect 94:DB:56:79:7D:86";
bd = "bluetoothctl disconnect 94:DB:56:79:7D:86";
2018-04-07 20:20:22 +02:00
};
2021-05-23 17:31:52 +02:00
interactiveShellInit = ''
2021-11-15 13:34:51 +01:00
set fish_greeting
2021-05-29 18:32:09 +02:00
source ${thefuck-alias "fish"}
2021-05-29 18:05:31 +02:00
source ~/dotfiles/nr.fish
2021-05-23 17:31:52 +02:00
'';
2018-04-07 20:20:22 +02:00
};
2018-04-07 20:27:44 +02:00
bash = {
enable = true;
historyControl = [ "erasedups" "ignoredups" "ignorespace" ];
shellAliases = {
2021-05-29 18:05:31 +02:00
nr = ''nix repl "<nixpkgs>"'';
2018-04-07 20:27:44 +02:00
nsp = "nix-shell -p";
};
2021-05-23 17:31:52 +02:00
initExtra = ''
2021-05-30 11:20:35 +02:00
source ${thefuck-alias "bash"}
2021-05-29 18:32:09 +02:00
eval "$(broot --print-shell-function bash)"
2021-06-06 18:15:35 +02:00
if [ "$IN_CACHED_NIX_SHELL" ]; then
2022-04-11 15:27:39 +02:00
eval "$shellHook"
unset shellHook
2021-06-06 18:15:35 +02:00
fi
2021-05-29 18:32:09 +02:00
'';
2018-04-07 20:27:44 +02:00
};
2018-04-07 20:04:20 +02:00
};
2022-04-11 12:15:47 +02:00
# todo: precompile?
2022-04-11 15:27:39 +02:00
home.file.".emacs.d/init.el".source =
(toString /home/yorick/dotfiles/emacs/init.el);
home.file.".emacs.d/early-init.el".source =
(toString /home/yorick/dotfiles/emacs/early-init.el);
2021-05-30 12:55:27 +02:00
xdg.configFile."nixpkgs/config.nix".text = ''
import "${toString ../config.nix}"
'';
xdg.configFile."nixpkgs/overlays.nix".text = ''
import "${toString ../overlays.nix}"
'';
2018-04-07 20:20:22 +02:00
xdg.configFile."streamlink/config".text = ''
player = mpv --cache 2048
default-stream = best
'';
2018-04-07 20:57:37 +02:00
services = {
2021-05-23 17:31:52 +02:00
lorri.enable = true;
#arbtt.enable = true;
gpg-agent = {
2018-04-07 20:57:37 +02:00
enable = true;
2021-05-23 17:31:52 +02:00
enableSshSupport = true;
};
};
2022-04-11 15:27:39 +02:00
home.packages = (with pkgs; [
## utils
# afew
broot
fd
gcr.out
git-absorb
github-cli
gmailieer
htop
kcachegrind
lm_sensors
notmuch
watchman
## misc
atop
awscli
borgbackup
bup
# catdoc
expect
fzf
gitAndTools.git-annex
glxinfo
gnupg1
imagemagick
iodine
jo
jq
lnav
magic-wormhole
man-pages
mosh
neofetch
openssl
pass
pv
screen
sshfs-fuse
sshuttle
thefuck
w3m
wakelan
## media
aria2
castnow
mpv
nodePackages.peerflix
streamlink
yt-dlp
## code
cloc
gcc
gdb
git-crypt
git-fire
gnumake
hub
python3
silver-searcher
sqlite
## nix
nix-tree
niv
nixfmt
patchelf
nix-prefetch-git
nix-du
nix-top
nix-diff
cachix
cached-nix-shell
## js
nodejs
electron
## pdf
ocamlPackages.cpdf
zathura
pandoc
poppler_utils
## misc
asciinema
cargo
exa
linuxPackages.perf
ltrace
pssh
smartmontools
unzip
vim
xdg_utils
#wlrctl
## coins
electrum
## apps
alacritty
calibre
chromium
discord
fanficfare
feh
gajim
gimp
gopass
hledger
neomutt
spotify
tdesktop
virt-manager
wireshark
y-firefox
yubioath-desktop # todo
## games
minecraft
steam
# minecraft
# nottetris2
# openttd
# wine
# winetricks
]);
2021-05-23 17:31:52 +02:00
home.file.".gnupg/gpg.conf".text = ''
no-greeting
require-cross-certification
charset utf-8
keyserver hkps://keys.openpgp.org
#keyserver-options auto-key-retrieve
'';
2021-05-29 17:05:05 +02:00
home.file.".mutt" = {
source = /home/yorick/dotfiles/mutt/.mutt;
recursive = true;
};
2021-05-23 17:31:52 +02:00
manual.manpages.enable = false;
2021-05-30 11:47:17 +02:00
home.sessionVariables = {
2022-04-11 15:27:39 +02:00
HOME_MANAGER_CONFIG =
toString ./home.nix; # unused, but checked for existence
2021-05-30 11:47:17 +02:00
};
2018-04-07 20:04:20 +02:00
}