nixos/home-manager/work-wsl.nix

17 lines
325 B
Nix
Raw Normal View History

2021-11-24 09:46:16 +01:00
{ config, pkgs, ... }:
2021-11-22 14:48:47 +01:00
{
2021-11-16 11:43:02 +01:00
imports = [
./common.nix
2021-11-22 14:48:47 +01:00
./common/git/git.nix
2021-11-16 11:43:02 +01:00
];
2021-11-22 14:48:47 +01:00
programs.git.userEmail = "zweili@contria.com";
2021-11-22 18:33:36 +01:00
programs.bash = {
enable = true;
bashrcExtra = ''
. ~/git_repos/nixos/home-manager/work_config/bashrc
2021-11-23 10:08:17 +01:00
. /home/andreas/.nix-profile/etc/profile.d/nix.sh
2021-11-22 18:33:36 +01:00
'';
};
2021-11-16 11:43:02 +01:00
}