2021-05-25 12:35:35 +02:00
|
|
|
{ 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 -")
|
|
|
|
];
|
2021-08-24 15:53:25 +02:00
|
|
|
|
|
|
|
programs.zsh.shellAliases = {
|
|
|
|
"tf" = "terraform";
|
|
|
|
};
|
2021-05-25 12:35:35 +02:00
|
|
|
}
|