5KTOFVFDH2TUKNVY7VIL4GHFK7KPW5WDYMRU6EMI4276SF7CXBGQC
O64A6IJJGMWJYUDR6VUFGYFPWWPN222BEMMLFCMLKDEFO5OVRE4QC
{
let hostPlatform = (import <nixpkgs> {}).stdenv.hostPlatform; copycmd = isLinux: if isLinux then "xclip -i -selection clipboard" else "pbcopy"; pastecmd = isLinux: if isLinux then "xclip -o -selection clipboard" else "pbpaste";in {
let
hostPlatform = (import <nixpkgs> {}).stdenv.hostPlatform;
copycmd = isLinux:
if isLinux then
"xclip -i -selection clipboard"
else
"pbcopy";
pastecmd = isLinux:
"xclip -o -selection clipboard"
"pbpaste";
in {
}
pbcopy = copycmd (hostPlatform.isLinux); pbpaste = pastecmd (hostPlatform.isLinux);}
pbcopy = copycmd (hostPlatform.isLinux);
pbpaste = pastecmd (hostPlatform.isLinux);