nixos/home/work-wsl.nix

22 lines
406 B
Nix
Raw Normal View History

2021-11-16 11:43:02 +01:00
{config, pkgs, ...}:
{
imports = [
./common.nix
];
programs.git = {
enable = true;
userName = "Andreas Zweili";
userEmail = "zweili@contria.com";
2021-11-16 14:19:30 +01:00
delta = {
enable = true;
options = {
navigate = true;
line-numbers = true;
syntax-theme = "GitHub";
};
};
2021-11-16 11:43:02 +01:00
};
2021-11-16 12:06:54 +01:00
# raw config files
home.file.".bashrc".source = ./work_config/bashrc;
2021-11-16 11:43:02 +01:00
}