119 lines
1.6 KiB
Nix
119 lines
1.6 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;
|
|
|
|
services.syncthing.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
|
|
bundix
|
|
nodejs
|
|
ruby
|
|
android-studio
|
|
|
|
# secrets
|
|
libsecret
|
|
keepassxc
|
|
];
|
|
|
|
imports = [
|
|
./R.nix
|
|
./nvim
|
|
./foot.nix
|
|
./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";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|