419a9ab0fe
* //users/tazjin/emacs: string-edit was renamed to string-edit-at-point
1b2c64ce1b
* //users/grfn/…/modules:
- readyset.nix: use rain from nixpkgs
- obs.nix: use input-overlay from nixpkgs (newer version, untested)
Change-Id: I5887078cee22673c129d186a8448855b92d7b250
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7306
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: grfn <grfn@gws.fyi>
Autosubmit: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
32 lines
832 B
Nix
32 lines
832 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./rust.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
# These go in $PATH so I can run it from rofi and parent to my WM
|
|
(writeShellScriptBin "dotclip" "xclip -out -selection clipboard | dot -Tpng | feh -")
|
|
(writeShellScriptBin "dotcontroller" "curl -s localhost:6033/graph | dot -Tpng | feh -")
|
|
|
|
rain
|
|
awscli2
|
|
amazon-ecr-credential-helper
|
|
];
|
|
|
|
programs.zsh.shellAliases = {
|
|
"tf" = "terraform";
|
|
};
|
|
|
|
home.file.".docker/config.json".text = builtins.toJSON {
|
|
credHelpers = {
|
|
"305232526136.dkr.ecr.us-east-2.amazonaws.com" = "ecr-login";
|
|
"public.ecr.aws" = "ecr-login";
|
|
};
|
|
};
|
|
|
|
programs.zsh.functions."purge_deployment" = ''
|
|
for key in $(http :8500/v1/kv/$1 keys==true | jq -r .'[]'); do http DELETE ":8500/v1/kv/$key"; done
|
|
'';
|
|
}
|