about summary refs log tree commit diff
path: root/users/grfn/system/home/modules/development/readyset.nix
blob: 19f44b7703550288642fb1324138ab0a6037cd9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, pkgs, ... }:

{
  imports = [
    ./rust.nix
  ];

  home.packages = with pkgs; [
    # This goes in $PATH so I can run it from rofi and parent to my WM
    (writeShellScriptBin "dotclip" "xclip -out -selection clipboard | dot -Tpng | feh -")
  ];

  programs.zsh.shellAliases = {
    "tf" = "terraform";
  };
}