dotfiles/.example_work_profile/work_overrides/default.nix

24 lines
336 B
Nix

{ pkgs, config, ... }: {
imports = [
./fish.nix
];
home = {
# username override
username = "work-user";
packages = with pkgs; [
packer
terraform
vagrant
vault
wsl-open
wslu
];
};
programs = {
htop.enable = true;
git.userEmail = "work-user@company.tld";
};
}