nixos/home-manager/work-wsl.nix

21 lines
405 B
Nix
Raw Normal View History

2022-02-21 11:36:12 +01:00
{ inputs, custom, pkgs, ... }:
2021-11-22 14:48:47 +01:00
{
2021-11-16 11:43:02 +01:00
imports = [
2021-12-22 18:28:56 +01:00
./common
2022-02-23 10:22:48 +01:00
./software/ansible
2021-12-22 18:05:25 +01:00
./software/git
2022-01-20 14:14:18 +01:00
./software/vagrant-wsl
2022-01-21 08:27:53 +01:00
./software/vim
2022-01-20 11:03:38 +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 = ''
. ~/.nixos/home-manager/configs/bash/work_wsl_bashrc
2022-02-21 11:36:12 +01:00
. /home/${custom.username}/.nix-profile/etc/profile.d/nix.sh
2021-11-22 18:33:36 +01:00
'';
};
2021-11-16 11:43:02 +01:00
}