chore(users): grfn -> aspen
Change-Id: I6c6847fac56f0a9a1a2209792e00a3aec5e672b9 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10809 Autosubmit: aspen <root@gws.fyi> Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi>
This commit is contained in:
parent
0ba476a426
commit
82ecd61f5c
478 changed files with 75 additions and 77 deletions
39
users/aspen/system/home/modules/development/readyset.nix
Normal file
39
users/aspen/system/home/modules/development/readyset.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{ 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
|
||||
ssm-session-manager-plugin
|
||||
amazon-ecr-credential-helper
|
||||
postgresql_15
|
||||
|
||||
# TODO remove override when https://github.com/NixOS/nixpkgs/pull/233826 is merged
|
||||
(sysbench.overrideDerivation (oldAttrs: {
|
||||
configureFlags = oldAttrs.configureFlags ++ [ "--with-pgsql" ];
|
||||
buildInputs = oldAttrs.buildInputs ++ [ postgresql ];
|
||||
}))
|
||||
];
|
||||
|
||||
programs.zsh.shellAliases = {
|
||||
"tf" = "terraform";
|
||||
};
|
||||
|
||||
home.file.".docker/config.json".text = builtins.toJSON {
|
||||
credHelpers = {
|
||||
"305232526136.dkr.ecr.us-east-2.amazonaws.com" = "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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue