mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-09 20:32:18 +00:00
24 lines
No EOL
336 B
Nix
24 lines
No EOL
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";
|
|
};
|
|
} |