blob: e9782e84f07b78b894460f483f19acb95f6a31f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ 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 -")
];
}
|