nixos/home/work-wsl.nix
2021-11-16 14:19:30 +01:00

22 lines
406 B
Nix

{config, pkgs, ...}:
{
imports = [
./common.nix
];
programs.git = {
enable = true;
userName = "Andreas Zweili";
userEmail = "zweili@contria.com";
delta = {
enable = true;
options = {
navigate = true;
line-numbers = true;
syntax-theme = "GitHub";
};
};
};
# raw config files
home.file.".bashrc".source = ./work_config/bashrc;
}