nix/hosts/work/home-config.nix

48 lines
1.3 KiB
Nix

{ pkgs, inputs, ... }: {
config.modules = {
application = {
zathura.enable = true;
foot = {
enable = true;
font-size = "10.5";
};
};
audio.cmus.enable = true;
cli = {
direnv.enable = true;
ghq.enable = true;
git = {
enable = true;
userEmail = inputs.nix-private.git.work.userEmail;
signingKey = inputs.nix-private.git.work.signingKey;
};
k8s = {
enable = true;
kubectlPlugins = with pkgs; [
kubectl-cnpg
];
};
neovim.enable = true;
starship.enable = true;
tmux = {
enable = true;
extraConfig = ''
bind -n M-F9 run 'create-tmux-session -n quipu -r quipuapp "run:nvim ." repo:quipu-infrastructure neww:quipu-infra p:sellsy hsplit:50 run:k9s repo:charts neww:charts'
bind -n M-F8 run 'create-tmux-session -n verifactu -r verifactu "run:nvim ." repo:verifactu-infrastructure neww:verifactu-infra repo:sellsy hsplit:50 run:k9s repo:charts neww:charts'
'';
};
utils.enable = true;
vifm.enable = true;
zellij.enable = true;
zsh.enable = true;
};
web.firefox = {
enable = true;
enableNixGL = true;
optionalExtensions = with pkgs.nur.repos.rycee.firefox-addons; [
okta-browser-plugin
];
};
};
}