omniflake/home/default.nix
2023-05-22 03:16:52 +02:00

114 lines
1.5 KiB
Nix

{ config, pkgs, inputs, lib, ... }:
{
home.username = "till";
home.homeDirectory = "/home/till";
home.stateVersion = "22.11";
home.pointerCursor = {
name = "Adwaita";
package = pkgs.gnome.adwaita-icon-theme;
size = 32;
};
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
};
programs.home-manager.enable = true;
home.packages = with pkgs; [
# commandline
exa
fzf
nnn
jq
silver-searcher
tmux
tree
# messenger
mattermost-desktop
signal-desktop
tdesktop
element-desktop
whatsapp-for-linux
# email
msmtp
notmuch
# isync
w3m
openssl
gnupg
urlscan
# office
vdirsyncer
khal
khard
gnome.gnome-sound-recorder
zoom-us
# publishing
pandoc
libreoffice
zotero
zathura
# graphics
inkscape
gimp
# web
qutebrowser
nyxt
# deveolopment
nodejs
ruby
# secrets
libsecret
keepassxc
];
imports = [
./R.nix
./nvim
./fish.nix
./mail
./tex.nix
./openconnect.nix
];
home.shellAliases = {
ls = "exa";
tree = "exa --tree";
v = "nvim";
};
programs.nix-index = {
enable = true;
enableFishIntegration = true;
};
programs.git = {
enable = true;
userName = "Till";
userEmail = "till@ktiu.net";
lfs = {
enable = true;
};
extraConfig = {
init = {
defaultBranch = "main";
};
};
};
}