diff options
-rw-r--r-- | users/grfn/system/home/machines/yeren.nix | 1 | ||||
-rw-r--r-- | users/grfn/system/home/modules/development/readyset.nix | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/users/grfn/system/home/machines/yeren.nix b/users/grfn/system/home/machines/yeren.nix index 6107c3c63511..504a382c208c 100644 --- a/users/grfn/system/home/machines/yeren.nix +++ b/users/grfn/system/home/machines/yeren.nix @@ -8,6 +8,7 @@ in imports = [ ../platforms/linux.nix ../modules/common.nix + ../modules/development/readyset.nix ]; # for when hacking diff --git a/users/grfn/system/home/modules/development/readyset.nix b/users/grfn/system/home/modules/development/readyset.nix new file mode 100644 index 000000000000..e9782e84f07b --- /dev/null +++ b/users/grfn/system/home/modules/development/readyset.nix @@ -0,0 +1,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 -") + ]; +} |